From: Felipe Balbi Date: Thu, 6 Sep 2012 12:45:38 +0000 (+0300) Subject: serial: omap: remove unnecessary header and add a missing one X-Git-Tag: v3.7-rc1~172^2~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d21e4005e4a4c24939f239b49862e6b0852e9169;p=profile%2Fivi%2Fkernel-x86-ivi.git serial: omap: remove unnecessary header and add a missing one this driver doesn't use any from , so we can remove it without any problems. This will, however cause a problem because omap-serial.c was relying on indirect inclusion of , let's fix the issue by including on omap-serial.c as it should be. Tested-by: Shubhrajyoti D Signed-off-by: Felipe Balbi Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 1ba1f43..881b652 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -40,7 +41,6 @@ #include #include -#include #include #define UART_BUILD_REVISION(x, y) (((x) << 8) | (y))