Skip to content

Commit 4cecff8

Browse files
andy-shevJiri Kosina
authored andcommitted
HID: i2c-hid: acpi: Switch to new style i2c-driver probe function
Switch to the new style i2c-driver probe_new probe function. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
1 parent 6d97010 commit 4cecff8

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

drivers/hid/i2c-hid/i2c-hid-acpi.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ static void i2c_hid_acpi_shutdown_tail(struct i2chid_ops *ops)
7474
acpi_device_set_power(ihid_acpi->adev, ACPI_STATE_D3_COLD);
7575
}
7676

77-
static int i2c_hid_acpi_probe(struct i2c_client *client,
78-
const struct i2c_device_id *dev_id)
77+
static int i2c_hid_acpi_probe(struct i2c_client *client)
7978
{
8079
struct device *dev = &client->dev;
8180
struct i2c_hid_acpi *ihid_acpi;
@@ -127,7 +126,7 @@ static struct i2c_driver i2c_hid_acpi_driver = {
127126
.acpi_match_table = ACPI_PTR(i2c_hid_acpi_match),
128127
},
129128

130-
.probe = i2c_hid_acpi_probe,
129+
.probe_new = i2c_hid_acpi_probe,
131130
.remove = i2c_hid_core_remove,
132131
.shutdown = i2c_hid_core_shutdown,
133132
};

0 commit comments

Comments
 (0)