diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-23 18:30:49 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-23 10:43:18 -0700 |
commit | 45efcb2d32d35f6509543e477568842d8467035d (patch) | |
tree | 4c8365fe99d97c3c5e84ca6df214bc001ea38a4e | |
parent | 4c24f2c9b671a1dacf2e25a3b059b54bb8899de1 (diff) | |
download | linux-stable-45efcb2d32d35f6509543e477568842d8467035d.tar.gz linux-stable-45efcb2d32d35f6509543e477568842d8467035d.tar.bz2 linux-stable-45efcb2d32d35f6509543e477568842d8467035d.zip |
tty/serial/sirf: fix MODULE_DEVICE_TABLE
This fixes building the sirfsorc-uart driver as a loadable module,
which uses an incorrect MODULE_DEVICE_TABLE, by changing the reference to the
correct symbol.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/sirfsoc_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sirfsoc_uart.c b/drivers/tty/serial/sirfsoc_uart.c index 6bbfe9934a4d..03465b673945 100644 --- a/drivers/tty/serial/sirfsoc_uart.c +++ b/drivers/tty/serial/sirfsoc_uart.c @@ -758,7 +758,7 @@ static struct of_device_id sirfsoc_uart_ids[] = { { .compatible = "sirf,marco-uart", }, {} }; -MODULE_DEVICE_TABLE(of, sirfsoc_serial_of_match); +MODULE_DEVICE_TABLE(of, sirfsoc_uart_ids); static struct platform_driver sirfsoc_uart_driver = { .probe = sirfsoc_uart_probe, |