mirror of https://gitee.com/openkylin/linux.git
spectrum_cs: Fix function names used in debug strings
Signed-off-by: David Kilroy <kilroyd@googlemail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
499b702a8d
commit
62d714e5eb
|
@ -248,13 +248,17 @@ static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
|
||||||
/* Note that the CIS values need to be rescaled */
|
/* Note that the CIS values need to be rescaled */
|
||||||
if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
|
if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
|
||||||
if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
|
if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
|
||||||
DEBUG(2, "spectrum_cs_config: Vcc mismatch (vcc = %d, CIS = %d)\n", vcc, cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
|
DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
|
||||||
|
__func__, vcc,
|
||||||
|
cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
|
||||||
if (!ignore_cis_vcc)
|
if (!ignore_cis_vcc)
|
||||||
goto next_entry;
|
goto next_entry;
|
||||||
}
|
}
|
||||||
} else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
|
} else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
|
||||||
if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
|
if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
|
||||||
DEBUG(2, "spectrum_cs_config: Vcc mismatch (vcc = %d, CIS = %d)\n", vcc, dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
|
DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
|
||||||
|
__func__, vcc,
|
||||||
|
dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
|
||||||
if (!ignore_cis_vcc)
|
if (!ignore_cis_vcc)
|
||||||
goto next_entry;
|
goto next_entry;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue