diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-04-04 17:35:11 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-30 09:26:55 -0700 |
commit | dea5ac3ae44f46a4ce3558cb4f48fa7b0a598d46 (patch) | |
tree | a9d6d40a8139cfee8ad1b3f40ef566c1efa5d7aa /drivers | |
parent | c42850f1ae7e70056f852e67bb9dddf927853b47 (diff) | |
download | op-kernel-dev-dea5ac3ae44f46a4ce3558cb4f48fa7b0a598d46.zip op-kernel-dev-dea5ac3ae44f46a4ce3558cb4f48fa7b0a598d46.tar.gz |
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>
Diffstat (limited to 'drivers')
-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 ed48988..e812237 100644 --- a/drivers/tty/serial/8250/8250_mid.c +++ b/drivers/tty/serial/8250/8250_mid.c @@ -9,9 +9,10 @@ * published by the Free Software Foundation. */ -#include <linux/rational.h> +#include <linux/bitops.h> #include <linux/module.h> #include <linux/pci.h> +#include <linux/rational.h> #include <linux/dma/hsu.h> #include <linux/8250_pci.h> |