diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-04-04 10:35:11 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-30 12:26:55 -0400 |
commit | dea5ac3ae44f46a4ce3558cb4f48fa7b0a598d46 (patch) | |
tree | a9d6d40a8139cfee8ad1b3f40ef566c1efa5d7aa | |
parent | c42850f1ae7e70056f852e67bb9dddf927853b47 (diff) |
serial: 8250_mid: include missed linux/bitops.h
The BIT() macro, that is definded in bitops.h, is used in the driver. Include
necessary header for that.
While here, reorder included headers alphabetically.
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/8250/8250_mid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_mid.c b/drivers/tty/serial/8250/8250_mid.c index ed489880e62b..e8122375aa18 100644 --- a/drivers/tty/serial/8250/8250_mid.c +++ b/drivers/tty/serial/8250/8250_mid.c | |||
@@ -9,9 +9,10 @@ | |||
9 | * published by the Free Software Foundation. | 9 | * published by the Free Software Foundation. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/rational.h> | 12 | #include <linux/bitops.h> |
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/pci.h> | 14 | #include <linux/pci.h> |
15 | #include <linux/rational.h> | ||
15 | 16 | ||
16 | #include <linux/dma/hsu.h> | 17 | #include <linux/dma/hsu.h> |
17 | #include <linux/8250_pci.h> | 18 | #include <linux/8250_pci.h> |