25 Jul, 2008

2 commits


03 Jul, 2008

1 commit


13 May, 2008

2 commits


30 Apr, 2008

2 commits

  • Based on earlier work by Jon Smirl and Jochen Friedrich.

    Update most new-style i2c drivers to use standard module aliasing
    instead of the old driver_name/type driver matching scheme. I've
    left the video drivers apart (except for SoC camera drivers) as
    they're a bit more diffcult to deal with, they'll have their own
    patch later.

    Signed-off-by: Jean Delvare
    Cc: Jon Smirl
    Cc: Jochen Friedrich

    Jean Delvare
     
  • Based on earlier work by Jon Smirl and Jochen Friedrich.

    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: Jean Delvare
    Cc: Jochen Friedrich
    Cc: Jon Smirl
    Cc: Kay Sievers

    Jean Delvare
     

23 Aug, 2007

1 commit

  • The new rtc-m41t80 driver name doesn't match its module name, which
    prevents it from properly hotplugging. Since it's new, no platforms yet
    depend on that name ... so this patch fixes the driver name to match its
    module name, rather than going the other way around with a MODULE_ALIAS().

    NOTE: This sort of bug is a new thing to watch out for with new-style I2C
    drivers; previously I2C couldn't hotplug.

    Signed-off-by: David Brownell
    Acked-by: Atsushi Nemoto
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    David Brownell
     

18 Jul, 2007

2 commits

  • Add a watchdog driver interface to rtc-m41t80 driver. This is derived from
    works by Alexander Bigga

    Signed-off-by: Atsushi Nemoto
    Signed-off-by: Alexander Bigga
    Cc: David Brownell
    Acked-by: Alessandro Zummo
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Atsushi Nemoto
     
  • This is a new-style i2c driver for ST M41T80 series RTC chip, derived from
    works by Alexander Bigga who wrote the original
    rtc-m41txx.c based on drivers/i2c/chips/m41t00.c driver.

    This driver supports M41T8[0-4] and M41ST8[457]. The old m41t00 driver
    supports M41T00, M41T81 and M41T85(M41ST85). While the M41T00 chip is now
    supported by rtc-ds1307 driver, this driver does not include support for
    the chip.

    [akpm@linux-foundation.org: remove bogus `static']
    Signed-off-by: Atsushi Nemoto
    Signed-off-by: Alexander Bigga
    Acked-by: Mark A. Greer
    Cc: David Brownell
    Acked-by: Alessandro Zummo
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Atsushi Nemoto