mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
mfd: Add missing WM5102 ifdefs
References to the WM5102 tables need to be guarded. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
cfe775ce62
commit
863df8d5f1
@ -368,6 +368,7 @@ int __devinit arizona_dev_init(struct arizona *arizona)
|
||||
arizona->rev &= ARIZONA_DEVICE_REVISION_MASK;
|
||||
|
||||
switch (reg) {
|
||||
#ifdef CONFIG_MFD_WM5102
|
||||
case 0x5102:
|
||||
type_name = "WM5102";
|
||||
if (arizona->type != WM5102) {
|
||||
@ -377,7 +378,7 @@ int __devinit arizona_dev_init(struct arizona *arizona)
|
||||
}
|
||||
ret = wm5102_patch(arizona);
|
||||
break;
|
||||
|
||||
#endif
|
||||
default:
|
||||
dev_err(arizona->dev, "Unknown device ID %x\n", reg);
|
||||
goto err_reset;
|
||||
|
@ -30,9 +30,11 @@ static __devinit int arizona_i2c_probe(struct i2c_client *i2c,
|
||||
int ret;
|
||||
|
||||
switch (id->driver_data) {
|
||||
#ifdef CONFIG_MFD_WM5102
|
||||
case WM5102:
|
||||
regmap_config = &wm5102_i2c_regmap;
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
dev_err(&i2c->dev, "Unknown device type %ld\n",
|
||||
id->driver_data);
|
||||
|
@ -158,10 +158,12 @@ int arizona_irq_init(struct arizona *arizona)
|
||||
const struct regmap_irq_chip *aod, *irq;
|
||||
|
||||
switch (arizona->type) {
|
||||
#ifdef CONFIG_MFD_WM5102
|
||||
case WM5102:
|
||||
aod = &wm5102_aod;
|
||||
irq = &wm5102_irq;
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
BUG_ON("Unknown Arizona class device" == NULL);
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user