]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/kernel-video.git/commitdiff
serial: omap: move uart_omap_port definition to C file
authorFelipe Balbi <balbi@ti.com>
Thu, 6 Sep 2012 12:45:39 +0000 (15:45 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Sep 2012 16:17:02 +0000 (09:17 -0700)
nobody needs to access the uart_omap_port structure
other than omap-serial.c file. Let's move that
structure definition to the C source file in order
to prevent anyone from accessing our structure.

Tested-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arm/plat-omap/include/plat/omap-serial.h
drivers/tty/serial/omap-serial.c

index a79ed8b17d9b0355fed5aef2cc301cc21a08bfa4..3c9fd3e4263fde70136f92dca9566f87ba3c4c79 100644 (file)
@@ -105,45 +105,8 @@ struct uart_omap_dma {
        unsigned int            rx_timeout;
 };
 
-struct uart_omap_port {
-       struct uart_port        port;
-       struct uart_omap_dma    uart_dma;
-       struct device           *dev;
-
-       unsigned char           ier;
-       unsigned char           lcr;
-       unsigned char           mcr;
-       unsigned char           fcr;
-       unsigned char           efr;
-       unsigned char           dll;
-       unsigned char           dlh;
-       unsigned char           mdr1;
-       unsigned char           scr;
-
-       int                     use_dma;
-       /*
-        * Some bits in registers are cleared on a read, so they must
-        * be saved whenever the register is read but the bits will not
-        * be immediately processed.
-        */
-       unsigned int            lsr_break_flag;
-       unsigned char           msr_saved_flags;
-       char                    name[20];
-       unsigned long           port_activity;
-       u32                     context_loss_cnt;
-       u32                     errata;
-       u8                      wakeups_enabled;
 
        int                     DTR_gpio;
        int                     DTR_inverted;
        int                     DTR_active;
-
-       struct pm_qos_request   pm_qos_request;
-       u32                     latency;
-       u32                     calc_latency;
-       struct work_struct      qos_work;
-};
-
-#define to_uart_omap_port(p)   ((container_of((p), struct uart_omap_port, port)))
-
 #endif /* __OMAP_SERIAL_H__ */
index 881b652220b486c4c80358d041e170c4745c6718..164c3c94067e81c162627e65584d8ebbaa20e8c4 100644 (file)
 #define OMAP_UART_MVR_MAJ_SHIFT                8
 #define OMAP_UART_MVR_MIN_MASK         0x3f
 
+struct uart_omap_port {
+       struct uart_port        port;
+       struct uart_omap_dma    uart_dma;
+       struct device           *dev;
+
+       unsigned char           ier;
+       unsigned char           lcr;
+       unsigned char           mcr;
+       unsigned char           fcr;
+       unsigned char           efr;
+       unsigned char           dll;
+       unsigned char           dlh;
+       unsigned char           mdr1;
+       unsigned char           scr;
+
+       int                     use_dma;
+       /*
+        * Some bits in registers are cleared on a read, so they must
+        * be saved whenever the register is read but the bits will not
+        * be immediately processed.
+        */
+       unsigned int            lsr_break_flag;
+       unsigned char           msr_saved_flags;
+       char                    name[20];
+       unsigned long           port_activity;
+       u32                     context_loss_cnt;
+       u32                     errata;
+       u8                      wakeups_enabled;
+       unsigned int            irq_pending:1;
+
+       struct pm_qos_request   pm_qos_request;
+       u32                     latency;
+       u32                     calc_latency;
+       struct work_struct      qos_work;
+};
+
+#define to_uart_omap_port(p)   ((container_of((p), struct uart_omap_port, port)))
+
 static struct uart_omap_port *ui[OMAP_MAX_HSUART_PORTS];
 
 /* Forward declaration of functions */