diff options
author | Jean Delvare <khali@linux-fr.org> | 2007-02-14 00:09:04 +0300 |
---|---|---|
committer | Jean Delvare <khali@arrakis.delvare> | 2007-02-14 00:09:04 +0300 |
commit | 5dd3ffae0afe355738eca14da1b47284bdae6240 (patch) | |
tree | d372417c49aea569235234d63012be9e170da5ee /drivers/rtc/rtc-x1205.c | |
parent | fe2c8d51af96ef7b8ec0bfd70ec62bbe32c0696e (diff) | |
download | linux-5dd3ffae0afe355738eca14da1b47284bdae6240.tar.xz |
i2c: Stop using i2c_adapter.class_dev
Stop using i2c_adapter.class_dev, as it is going to be removed
soon. Luckily, there are only 4 RTC drivers affected.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Diffstat (limited to 'drivers/rtc/rtc-x1205.c')
-rw-r--r-- | drivers/rtc/rtc-x1205.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-x1205.c b/drivers/rtc/rtc-x1205.c index 019ae255b0c8..513d1a611aab 100644 --- a/drivers/rtc/rtc-x1205.c +++ b/drivers/rtc/rtc-x1205.c @@ -506,7 +506,7 @@ static int x1205_probe(struct i2c_adapter *adapter, int address, int kind) struct i2c_client *client; struct rtc_device *rtc; - dev_dbg(adapter->class_dev.dev, "%s\n", __FUNCTION__); + dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { err = -ENODEV; |