Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 269370
b: refs/heads/master
c: 8588806
h: refs/heads/master
v: v3
  • Loading branch information
Ben Dooks authored and Grant Likely committed Sep 30, 2011
1 parent b9f2861 commit c1b9f47
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3a1e362e3f3cd571b3974b8d44b8e358ec7a098c
refs/heads/master: 85888069cf5d0f21312e3ee730458a5e3a553509
4 changes: 1 addition & 3 deletions trunk/drivers/tty/serial/altera_jtaguart.c
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,6 @@ static struct of_device_id altera_jtaguart_match[] = {
{},
};
MODULE_DEVICE_TABLE(of, altera_jtaguart_match);
#else
#define altera_jtaguart_match NULL
#endif /* CONFIG_OF */

static struct platform_driver altera_jtaguart_platform_driver = {
Expand All @@ -482,7 +480,7 @@ static struct platform_driver altera_jtaguart_platform_driver = {
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
.of_match_table = altera_jtaguart_match,
.of_match_table = of_match_ptr(altera_jtaguart_match),
},
};

Expand Down
4 changes: 1 addition & 3 deletions trunk/drivers/tty/serial/altera_uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -616,8 +616,6 @@ static struct of_device_id altera_uart_match[] = {
{},
};
MODULE_DEVICE_TABLE(of, altera_uart_match);
#else
#define altera_uart_match NULL
#endif /* CONFIG_OF */

static struct platform_driver altera_uart_platform_driver = {
Expand All @@ -626,7 +624,7 @@ static struct platform_driver altera_uart_platform_driver = {
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
.of_match_table = altera_uart_match,
.of_match_table = of_match_ptr(altera_uart_match),
},
};

Expand Down
4 changes: 1 addition & 3 deletions trunk/drivers/tty/serial/uartlite.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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),
},
};

Expand Down

0 comments on commit c1b9f47

Please sign in to comment.