Most of the disconnect routines for the "subdevs" of a module
blindly assume that initialization of the subdev was successful.
Fix this by checking for null pointers.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
struct gb_battery *gb;
gb = gmod->gb_battery;
+ if (!gb)
+ return;
power_supply_unregister(&gb->bat);
int retval;
gb_gpio_dev = gmod->gb_gpio_dev;
+ if (!gb_gpio_dev)
+ return;
retval = gpiochip_remove(&gb_gpio_dev->chip);
kfree(gb_gpio_dev);
struct gb_i2c_device *gb_i2c_dev;
gb_i2c_dev = gmod->gb_i2c_dev;
+ if (!gb_i2c_dev)
+ return;
i2c_del_adapter(gb_i2c_dev->adapter);
kfree(gb_i2c_dev->adapter);
kfree(gb_i2c_dev);
struct gb_sdio_host *host;
host = gmod->gb_sdio_host;
- mmc = host->mmc;
+ if (!host)
+ return;
+ mmc = host->mmc;
mmc_remove_host(mmc);
mmc_free_host(mmc);
}