Re: [NEW DRIVER V1 1/7] DA9058 MFD core and ADC driver

2012-08-02 Thread Mark Brown
On Thu, Aug 02, 2012 at 09:48:55AM +0100, Anthony Olech wrote: > +#if 0 > + return regmap_bulk_read(da9058->regmap, reg, val, val_count); > +#else > + int ret = regmap_bulk_read(da9058->regmap, reg, val, val_count); > + return ret; > +#endif This shouldn't be going into mainline... >

[NEW DRIVER V1 1/7] DA9058 MFD core and ADC driver

2012-08-02 Thread Anthony Olech
This is the MFD core driver for the Dialog DA9058 PMIC. This driver, via MFD CELLs, causes all the component drivers to be loaded, if it is a module, and initialized via their probe methods. It also provides access to the ADC functions on the PMIC. All the other component drivers depend on this one