9
0
Fork 0

mfd: mc13xxx: move to coredevice_initcall

The PMIC is often a dependency for other devices, so make sure
it's initialized early. While at it, merge the spi/i2c registration
into a single initcall and use IS_ENABLED instead of ifdefs.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-05-08 09:14:13 +02:00
parent b90e1f70c8
commit b42bcee8f4
1 changed files with 21 additions and 11 deletions

View File

@ -397,7 +397,6 @@ static __maybe_unused struct of_device_id mc13xxx_dt_ids[] = {
{ }
};
#ifdef CONFIG_I2C
static struct driver_d mc13xxx_i2c_driver = {
.name = "mc13xxx-i2c",
.probe = mc13xxx_probe,
@ -405,19 +404,30 @@ static struct driver_d mc13xxx_i2c_driver = {
.of_compatible = DRV_OF_COMPAT(mc13xxx_dt_ids),
};
static int __init mc13xxx_i2c_init(void)
{
return i2c_driver_register(&mc13xxx_i2c_driver);
}
device_initcall(mc13xxx_i2c_init);
#endif
#ifdef CONFIG_SPI
static struct driver_d mc13xxx_spi_driver = {
.name = "mc13xxx-spi",
.probe = mc13xxx_probe,
.id_table = mc13xxx_ids,
.of_compatible = DRV_OF_COMPAT(mc13xxx_dt_ids),
};
device_spi_driver(mc13xxx_spi_driver);
#endif
static int __init mc13xxx_init(void)
{
int err_spi = 0, err_i2c = 0;
if (IS_ENABLED(CONFIG_I2C))
err_spi = i2c_driver_register(&mc13xxx_i2c_driver);
if (IS_ENABLED(CONFIG_SPI))
err_i2c = spi_driver_register(&mc13xxx_spi_driver);
if (err_spi)
return err_spi;
if (err_i2c)
return err_i2c;
return 0;
}
coredevice_initcall(mc13xxx_init);