projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8449c8
)
backlight: ktz8866: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 27 Jan 2023 15:26:39 +0000
(16:26 +0100)
committer
Lee Jones
<lee@kernel.org>
Wed, 22 Feb 2023 10:55:28 +0000
(10:55 +0000)
The probe function doesn't make use of the i2c_device_id * parameter so
it can be trivially converted.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Lee Jones <lee@kernel.org>
Link:
https://lore.kernel.org/r/20230127152639.1347229-1-u.kleine-koenig@pengutronix.de
drivers/video/backlight/ktz8866.c
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/ktz8866.c
b/drivers/video/backlight/ktz8866.c
index 97b723719e13a924359b43d0da8103b9ecedcdbc..d38c13ad39c7ae52814442a716050ed39737cb9f 100644
(file)
--- a/
drivers/video/backlight/ktz8866.c
+++ b/
drivers/video/backlight/ktz8866.c
@@
-124,8
+124,7
@@
static void ktz8866_init(struct ktz8866 *ktz)
ktz8866_write(ktz, LCD_BIAS_CFG1, LCD_BIAS_EN);
}
-static int ktz8866_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int ktz8866_probe(struct i2c_client *client)
{
struct backlight_device *backlight_dev;
struct backlight_properties props;
@@
-197,7
+196,7
@@
static struct i2c_driver ktz8866_driver = {
.name = "ktz8866",
.of_match_table = ktz8866_match_table,
},
- .probe = ktz8866_probe,
+ .probe
_new
= ktz8866_probe,
.remove = ktz8866_remove,
.id_table = ktz8866_ids,
};