diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-03-14 06:07:04 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2013-04-05 08:20:14 -0400 |
commit | bd247acb77b7a3dcb1075d7c9f09bc46bd242f3b (patch) | |
tree | 6ff547cb0384983622a769d0cee335a52ed33e0a | |
parent | b57d43ff64b036f43940e25d153518bee6cbc7ec (diff) |
mtd: sh_flctl: Use of_match_ptr() macro
This eliminates having an #ifdef returning NULL for the case
when OF is disabled.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | drivers/mtd/nand/sh_flctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/nand/sh_flctl.c b/drivers/mtd/nand/sh_flctl.c index 5899738ffced..e57e18e8c289 100644 --- a/drivers/mtd/nand/sh_flctl.c +++ b/drivers/mtd/nand/sh_flctl.c | |||
@@ -1081,7 +1081,6 @@ static struct sh_flctl_platform_data *flctl_parse_dt(struct device *dev) | |||
1081 | return pdata; | 1081 | return pdata; |
1082 | } | 1082 | } |
1083 | #else /* CONFIG_OF */ | 1083 | #else /* CONFIG_OF */ |
1084 | #define of_flctl_match NULL | ||
1085 | static struct sh_flctl_platform_data *flctl_parse_dt(struct device *dev) | 1084 | static struct sh_flctl_platform_data *flctl_parse_dt(struct device *dev) |
1086 | { | 1085 | { |
1087 | return NULL; | 1086 | return NULL; |
@@ -1219,7 +1218,7 @@ static struct platform_driver flctl_driver = { | |||
1219 | .driver = { | 1218 | .driver = { |
1220 | .name = "sh_flctl", | 1219 | .name = "sh_flctl", |
1221 | .owner = THIS_MODULE, | 1220 | .owner = THIS_MODULE, |
1222 | .of_match_table = of_flctl_match, | 1221 | .of_match_table = of_match_ptr(of_flctl_match), |
1223 | }, | 1222 | }, |
1224 | }; | 1223 | }; |
1225 | 1224 | ||