From: Sachin Kamat Date: Sat, 21 Dec 2013 10:02:00 +0000 (+0000) Subject: staging: iio: hmc5843: Remove redundant of_match_ptr helper X-Git-Tag: next-20140106~15^2^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6fd92d3add999fbcc7178a07cbc6360f66a306ba;p=karo-tx-linux.git staging: iio: hmc5843: Remove redundant of_match_ptr helper 'hmc5843_of_match' is always compiled in. Hence the helper macro is not needed. Signed-off-by: Sachin Kamat Signed-off-by: Jonathan Cameron --- diff --git a/drivers/staging/iio/magnetometer/hmc5843.c b/drivers/staging/iio/magnetometer/hmc5843.c index bdb018878296..41005b1fbe86 100644 --- a/drivers/staging/iio/magnetometer/hmc5843.c +++ b/drivers/staging/iio/magnetometer/hmc5843.c @@ -634,7 +634,7 @@ static struct i2c_driver hmc5843_driver = { .driver = { .name = "hmc5843", .pm = HMC5843_PM_OPS, - .of_match_table = of_match_ptr(hmc5843_of_match), + .of_match_table = hmc5843_of_match, }, .id_table = hmc5843_id, .probe = hmc5843_probe,