From 9df7eadf80caea58b9854a8433cba543dbe3b161 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Wed, 21 Mar 2012 20:11:51 +0100 Subject: [PATCH] i2c-s3c2410: Drop unused define Use standard of_match_ptr() to avoid defining variable unused in non device tree builds. Signed-off-by: Karol Lewandowski Signed-off-by: Kyungmin Park Acked-by: Grant Likely Signed-off-by: Wolfram Sang --- drivers/i2c/busses/i2c-s3c2410.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 737f721..85e3664 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -1128,8 +1128,6 @@ static const struct of_device_id s3c24xx_i2c_match[] = { {}, }; MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); -#else -#define s3c24xx_i2c_match NULL #endif static struct platform_driver s3c24xx_i2c_driver = { @@ -1140,7 +1138,7 @@ static struct platform_driver s3c24xx_i2c_driver = { .owner = THIS_MODULE, .name = "s3c-i2c", .pm = S3C24XX_DEV_PM_OPS, - .of_match_table = s3c24xx_i2c_match, + .of_match_table = of_match_ptr(s3c24xx_i2c_match), }, }; -- 2.7.4