From: Paul Cercueil Date: Fri, 4 Sep 2020 13:11:52 +0000 (+0200) Subject: i2c: jz4780: Remove of_match_ptr() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7eecca9daf9acafd8d3b910af52bd1453aa501da;p=linux.git i2c: jz4780: Remove of_match_ptr() CONFIG_OF is selected by CONFIG_MACH_INGENIC, therefore we don't need to handle the case where Device Tree is not supported. Signed-off-by: Paul Cercueil Signed-off-by: Wolfram Sang --- diff --git a/drivers/i2c/busses/i2c-jz4780.c b/drivers/i2c/busses/i2c-jz4780.c index ed2ec86f6f1a1..cb4a25ebb8900 100644 --- a/drivers/i2c/busses/i2c-jz4780.c +++ b/drivers/i2c/busses/i2c-jz4780.c @@ -857,7 +857,7 @@ static struct platform_driver jz4780_i2c_driver = { .remove = jz4780_i2c_remove, .driver = { .name = "jz4780-i2c", - .of_match_table = of_match_ptr(jz4780_i2c_of_matches), + .of_match_table = jz4780_i2c_of_matches, }, };