diff options
author | Jean Delvare <khali@linux-fr.org> | 2008-04-29 17:11:40 -0400 |
---|---|---|
committer | Jean Delvare <khali@hyperion.delvare> | 2008-04-29 17:11:40 -0400 |
commit | 3760f736716f74bdc62a4ba5406934338da93eb2 (patch) | |
tree | e28e22c6655dd62566f1b7a99f9354a31bf9d06e /drivers/hwmon | |
parent | d2653e92732bd3911feff6bee5e23dbf959381db (diff) |
i2c: Convert most new-style drivers to use module aliasing
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 <khali@linux-fr.org>
Cc: Jon Smirl <jonsmirl@gmail.com>
Cc: Jochen Friedrich <jochen@scram.de>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/f75375s.c | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/drivers/hwmon/f75375s.c b/drivers/hwmon/f75375s.c index 1f63bab05522..dc1f30e432ea 100644 --- a/drivers/hwmon/f75375s.c +++ b/drivers/hwmon/f75375s.c | |||
@@ -129,12 +129,20 @@ static struct i2c_driver f75375_legacy_driver = { | |||
129 | .detach_client = f75375_detach_client, | 129 | .detach_client = f75375_detach_client, |
130 | }; | 130 | }; |
131 | 131 | ||
132 | static const struct i2c_device_id f75375_id[] = { | ||
133 | { "f75373", f75373 }, | ||
134 | { "f75375", f75375 }, | ||
135 | { } | ||
136 | }; | ||
137 | MODULE_DEVICE_TABLE(i2c, f75375_id); | ||
138 | |||
132 | static struct i2c_driver f75375_driver = { | 139 | static struct i2c_driver f75375_driver = { |
133 | .driver = { | 140 | .driver = { |
134 | .name = "f75375", | 141 | .name = "f75375", |
135 | }, | 142 | }, |
136 | .probe = f75375_probe, | 143 | .probe = f75375_probe, |
137 | .remove = f75375_remove, | 144 | .remove = f75375_remove, |
145 | .id_table = f75375_id, | ||
138 | }; | 146 | }; |
139 | 147 | ||
140 | static inline int f75375_read8(struct i2c_client *client, u8 reg) | 148 | static inline int f75375_read8(struct i2c_client *client, u8 reg) |
@@ -645,15 +653,7 @@ static int f75375_probe(struct i2c_client *client, | |||
645 | i2c_set_clientdata(client, data); | 653 | i2c_set_clientdata(client, data); |
646 | data->client = client; | 654 | data->client = client; |
647 | mutex_init(&data->update_lock); | 655 | mutex_init(&data->update_lock); |
648 | 656 | data->kind = id->driver_data; | |
649 | if (strcmp(client->name, "f75375") == 0) | ||
650 | data->kind = f75375; | ||
651 | else if (strcmp(client->name, "f75373") == 0) | ||
652 | data->kind = f75373; | ||
653 | else { | ||
654 | dev_err(&client->dev, "Unsupported device: %s\n", client->name); | ||
655 | return -ENODEV; | ||
656 | } | ||
657 | 657 | ||
658 | if ((err = sysfs_create_group(&client->dev.kobj, &f75375_group))) | 658 | if ((err = sysfs_create_group(&client->dev.kobj, &f75375_group))) |
659 | goto exit_free; | 659 | goto exit_free; |
@@ -714,6 +714,7 @@ static int f75375_detect(struct i2c_adapter *adapter, int address, int kind) | |||
714 | u8 version = 0; | 714 | u8 version = 0; |
715 | int err = 0; | 715 | int err = 0; |
716 | const char *name = ""; | 716 | const char *name = ""; |
717 | struct i2c_device_id id; | ||
717 | 718 | ||
718 | if (!(client = kzalloc(sizeof(*client), GFP_KERNEL))) { | 719 | if (!(client = kzalloc(sizeof(*client), GFP_KERNEL))) { |
719 | err = -ENOMEM; | 720 | err = -ENOMEM; |
@@ -750,7 +751,9 @@ static int f75375_detect(struct i2c_adapter *adapter, int address, int kind) | |||
750 | if ((err = i2c_attach_client(client))) | 751 | if ((err = i2c_attach_client(client))) |
751 | goto exit_free; | 752 | goto exit_free; |
752 | 753 | ||
753 | if ((err = f75375_probe(client, NULL)) < 0) | 754 | strlcpy(id.name, name, I2C_NAME_SIZE); |
755 | id.driver_data = kind; | ||
756 | if ((err = f75375_probe(client, &id)) < 0) | ||
754 | goto exit_detach; | 757 | goto exit_detach; |
755 | 758 | ||
756 | return 0; | 759 | return 0; |