diff options
author | Ben Dooks <ben-linux@fluff.org> | 2011-08-03 13:11:43 +0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-09-30 05:31:48 +0400 |
commit | 85888069cf5d0f21312e3ee730458a5e3a553509 (patch) | |
tree | cc5a7d07524c0f200e671749efea663a991c2f58 /drivers/tty/serial/uartlite.c | |
parent | 3a1e362e3f3cd571b3974b8d44b8e358ec7a098c (diff) | |
download | linux-85888069cf5d0f21312e3ee730458a5e3a553509.tar.xz |
tty: use of_match_ptr() for of_match_table entry
Use the new of_match_ptr() macro for the of_match_table
pointer entry to avoid having to #dfine match NULL
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/tty/serial/uartlite.c')
-rw-r--r-- | drivers/tty/serial/uartlite.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/tty/serial/uartlite.c b/drivers/tty/serial/uartlite.c index 8af1ed83a4c0..0aed022d21b7 100644 --- a/drivers/tty/serial/uartlite.c +++ b/drivers/tty/serial/uartlite.c @@ -568,8 +568,6 @@ static struct of_device_id ulite_of_match[] __devinitdata = { {} }; MODULE_DEVICE_TABLE(of, ulite_of_match); -#else /* CONFIG_OF */ -#define ulite_of_match NULL #endif /* CONFIG_OF */ static int __devinit ulite_probe(struct platform_device *pdev) @@ -609,7 +607,7 @@ static struct platform_driver ulite_platform_driver = { .driver = { .owner = THIS_MODULE, .name = "uartlite", - .of_match_table = ulite_of_match, + .of_match_table = of_match_ptr(ulite_of_match), }, }; |