[PATCH1/7] i2c: Add support for device alias names

2008-04-11 Thread Jochen Friedrich
Based on earlier work by Jon Smirl and Jean Delvare. This patch allows new-style i2c chip drivers to have alias names using the official kernel aliasing system and MODULE_DEVICE_TABLE(). At this point, the old i2c driver binding scheme (driver_name/type) is still supported. Signed-off-by: Jochen

Re: [PATCH1/7] i2c: Add support for device alias names

2008-04-26 Thread Jean Delvare
Hi Jochen, On Fri, 11 Apr 2008 16:07:35 +0200, Jochen Friedrich wrote: > Based on earlier work by Jon Smirl and Jean Delvare. > > This patch allows new-style i2c chip drivers to have alias names using > the official kernel aliasing system and MODULE_DEVICE_TABLE(). At this > point, the old i2c dr

Re: [PATCH1/7] i2c: Add support for device alias names

2008-04-27 Thread Jochen Friedrich
Hi Jean, >> -if ((err = f75375_probe(client)) < 0) >> +err = f75375_probe(client, NULL); >> +if (err < 0) >> goto exit_detach; >> >> return 0; > > These coding style cleanups don't belong to this patch (if they belong > anywhere - I don't much see the point) I jus