mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 06:42:31 +00:00
hwmon: (atxp1) Avoid forward declaration
Move atxp1_id and atxp1_driver to proper place to avoid forward declaration. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
1a539d372e
commit
8dea1b4e77
@ -45,30 +45,6 @@ MODULE_AUTHOR("Sebastian Witt <se.witt@gmx.net>");
|
|||||||
|
|
||||||
static const unsigned short normal_i2c[] = { 0x37, 0x4e, I2C_CLIENT_END };
|
static const unsigned short normal_i2c[] = { 0x37, 0x4e, I2C_CLIENT_END };
|
||||||
|
|
||||||
static int atxp1_probe(struct i2c_client *client,
|
|
||||||
const struct i2c_device_id *id);
|
|
||||||
static int atxp1_remove(struct i2c_client *client);
|
|
||||||
static struct atxp1_data *atxp1_update_device(struct device *dev);
|
|
||||||
static int atxp1_detect(struct i2c_client *client, struct i2c_board_info *info);
|
|
||||||
|
|
||||||
static const struct i2c_device_id atxp1_id[] = {
|
|
||||||
{ "atxp1", 0 },
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
MODULE_DEVICE_TABLE(i2c, atxp1_id);
|
|
||||||
|
|
||||||
static struct i2c_driver atxp1_driver = {
|
|
||||||
.class = I2C_CLASS_HWMON,
|
|
||||||
.driver = {
|
|
||||||
.name = "atxp1",
|
|
||||||
},
|
|
||||||
.probe = atxp1_probe,
|
|
||||||
.remove = atxp1_remove,
|
|
||||||
.id_table = atxp1_id,
|
|
||||||
.detect = atxp1_detect,
|
|
||||||
.address_list = normal_i2c,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct atxp1_data {
|
struct atxp1_data {
|
||||||
struct device *hwmon_dev;
|
struct device *hwmon_dev;
|
||||||
struct mutex update_lock;
|
struct mutex update_lock;
|
||||||
@ -386,4 +362,22 @@ static int atxp1_remove(struct i2c_client *client)
|
|||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct i2c_device_id atxp1_id[] = {
|
||||||
|
{ "atxp1", 0 },
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(i2c, atxp1_id);
|
||||||
|
|
||||||
|
static struct i2c_driver atxp1_driver = {
|
||||||
|
.class = I2C_CLASS_HWMON,
|
||||||
|
.driver = {
|
||||||
|
.name = "atxp1",
|
||||||
|
},
|
||||||
|
.probe = atxp1_probe,
|
||||||
|
.remove = atxp1_remove,
|
||||||
|
.id_table = atxp1_id,
|
||||||
|
.detect = atxp1_detect,
|
||||||
|
.address_list = normal_i2c,
|
||||||
|
};
|
||||||
|
|
||||||
module_i2c_driver(atxp1_driver);
|
module_i2c_driver(atxp1_driver);
|
||||||
|
Loading…
Reference in New Issue
Block a user