summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/44x
diff options
context:
space:
mode:
authorStephen Kitt <steve@sk2.org>2020-08-07 17:27:13 +0200
committerMichael Ellerman <mpe@ellerman.id.au>2020-09-02 11:00:20 +1000
commit6c9100ea39d209e1625ba0fe06134192d9c4752a (patch)
tree4d35d7e19192ff5f0b4a430747b63c331ae7a438 /arch/powerpc/platforms/44x
parent5d1bc776428f34941a6237afb9454061b5b5e1e1 (diff)
downloadlinux-stable-6c9100ea39d209e1625ba0fe06134192d9c4752a.tar.gz
linux-stable-6c9100ea39d209e1625ba0fe06134192d9c4752a.tar.bz2
linux-stable-6c9100ea39d209e1625ba0fe06134192d9c4752a.zip
powerpc: Use simple i2c probe function
The i2c probe functions here don't use the id information provided in their second argument, so the single-parameter i2c probe function ("probe_new") can be used instead. This avoids scanning the identifier tables during probes. Signed-off-by: Stephen Kitt <steve@sk2.org> Acked-by: Wolfram Sang <wsa@kernel.org> Reviewed-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20200807152713.381588-1-steve@sk2.org
Diffstat (limited to 'arch/powerpc/platforms/44x')
-rw-r--r--arch/powerpc/platforms/44x/ppc476.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/44x/ppc476.c b/arch/powerpc/platforms/44x/ppc476.c
index cba83eee685c..07f7e3ce67b5 100644
--- a/arch/powerpc/platforms/44x/ppc476.c
+++ b/arch/powerpc/platforms/44x/ppc476.c
@@ -86,8 +86,7 @@ static void __noreturn avr_reset_system(char *cmd)
avr_halt_system(AVR_PWRCTL_RESET);
}
-static int avr_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int avr_probe(struct i2c_client *client)
{
avr_i2c_client = client;
ppc_md.restart = avr_reset_system;
@@ -104,7 +103,7 @@ static struct i2c_driver avr_driver = {
.driver = {
.name = "akebono-avr",
},
- .probe = avr_probe,
+ .probe_new = avr_probe,
.id_table = avr_id,
};