diff options
| author | Tom Rini <[email protected]> | 2016-01-20 07:23:05 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-01-25 10:39:45 -0500 |
| commit | 0080931abfec5c25f76683e5b96b483416bd14f2 (patch) | |
| tree | 6ee896193016a1a8e2e35cd64e9c6fea7d6eeac1 /drivers | |
| parent | 8d4f11c2033d0621f22a1501d92616596a8d1a62 (diff) | |
serial: Remove serial_putc_raw_dev
clang-3.8 reports that serial_putc_raw_dev in serial_ns16550.c is
unused. Further investigation shows that we have 3 places that
implement this function and no callers, remove.
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/serial/serial_ns16550.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/serial/serial_ns16550.c b/drivers/serial/serial_ns16550.c index 799ef6a667d..fcb1e95e810 100644 --- a/drivers/serial/serial_ns16550.c +++ b/drivers/serial/serial_ns16550.c @@ -127,11 +127,6 @@ static void _serial_putc(const char c, const int port) NS16550_putc(PORT, c); } -static void _serial_putc_raw(const char c, const int port) -{ - NS16550_putc(PORT, c); -} - static void _serial_puts(const char *s, const int port) { while (*s) { @@ -165,12 +160,6 @@ serial_putc_dev(unsigned int dev_index,const char c) } static inline void -serial_putc_raw_dev(unsigned int dev_index,const char c) -{ - _serial_putc_raw(c,dev_index); -} - -static inline void serial_puts_dev(unsigned int dev_index,const char *s) { _serial_puts(s,dev_index); |
