Commit 7eecca9d authored by Paul Cercueil's avatar Paul Cercueil Committed by Wolfram Sang
Browse files

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: default avatarPaul Cercueil <paul@crapouillou.net>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent 266fd91f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
	},
};