]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
board: delete meaningless serial.h
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Wed, 15 Jan 2014 09:00:25 +0000 (18:00 +0900)
committerTom Rini <trini@ti.com>
Fri, 24 Jan 2014 21:59:21 +0000 (16:59 -0500)
Delete some serial.h files, whole code in which is surrounded by
  #if 0 ... #endif

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Stefan Roese <sr@denx.de>
board/Marvell/common/serial.c
board/Marvell/common/serial.h [deleted file]
board/esd/cpci750/serial.c
board/esd/cpci750/serial.h [deleted file]
board/evb64260/serial.c
board/evb64260/serial.h [deleted file]
board/prodrive/p3mx/serial.c
board/prodrive/p3mx/serial.h [deleted file]

index 56ba0daa05f4c45f91f2327ae505380474a8398b..752492fc7d17d3c99d33fb536d13e4c3aec6f892 100644 (file)
@@ -20,7 +20,6 @@
 #include <linux/compiler.h>
 
 #include "../include/memory.h"
-#include "serial.h"
 
 #ifdef CONFIG_DB64360
 #include "../db64360/mpsc.h"
diff --git a/board/Marvell/common/serial.h b/board/Marvell/common/serial.h
deleted file mode 100644 (file)
index 264e2d2..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * (C) Copyright 2001
- * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
- *
- * modified for marvell db64360 eval board by
- * Ingo Assmus <ingo.assmus@keymile.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
- */
-
-/* serial.h - mostly useful for DUART serial_init in serial.c */
-
-#ifndef __SERIAL_H__
-#define __SERIAL_H__
-
-#if 0
-
-#define B230400         1
-#define B115200         2
-#define B57600          4
-#define B38400          82
-#define B19200          163
-#define B9600           24
-#define B4800           651
-#define B2400           1302
-#define B1200           2604
-#define B600            5208
-#define B300            10417
-#define B150            20833
-#define B110            28409
-#define BDEFAULT        B115200
-
-                               /* this stuff is important to initialize
-                               the DUART channels */
-
-#define        Scale           0x01L           /* distance between port addresses */
-#define        COM1            0x000003f8              /* Keyboard */
-#define COM2           0x000002f8              /* Host */
-
-
-/* Port Definitions relative to base COM port addresses */
-#define DataIn (0x00*Scale)    /* data input port */
-#define DataOut        (0x00*Scale)    /* data output port */
-#define BaudLsb        (0x00*Scale)    /* baud rate divisor least significant byte */
-#define BaudMsb        (0x01*Scale)    /* baud rate divisor most significant byte */
-#define        Ier     (0x01*Scale)    /* interrupt enable register */
-#define        Iir     (0x02*Scale)    /* interrupt identification register */
-#define        Lcr     (0x03*Scale)    /* line control register */
-#define        Mcr     (0x04*Scale)    /* modem control register */
-#define        Lsr     (0x05*Scale)    /* line status register */
-#define        Msr     (0x06*Scale)    /* modem status register */
-
-/* Bit Definitions for above ports */
-#define LcrDlab        0x80    /* b7:   enable baud rate divisor registers */
-#define        LcrDflt 0x03    /* b6-0: no parity, 1 stop, 8 data */
-
-#define        McrRts  0x02    /* b1:  request to send (I am ready to xmit) */
-#define        McrDtr  0x01    /* b0:  data terminal ready (I am alive ready to rcv) */
-#define        McrDflt (McrRts|McrDtr)
-
-#define LsrTxD 0x6000  /* b5: transmit holding register empty (i.e. xmit OK!)*/
-                       /* b6: transmitter empty */
-#define LsrRxD 0x0100  /* b0: received data ready (i.e. got a byte!) */
-
-#define        MsrRi   0x0040  /* b6: ring indicator (other guy is ready to rcv) */
-#define        MsrDsr  0x0020  /* b5: data set ready (other guy is alive ready to rcv */
-#define        MsrCts  0x0010  /* b4: clear to send (other guy is ready to rcv) */
-
-#define IerRda 0xf     /* b0: Enable received data available interrupt */
-
-#endif
-
-#endif /* __SERIAL_H__ */
index f42510545c930fae736e471ffd57286c68dc45c4..6c2cf215acfa92970179f10f1e1c4c2f463783b5 100644 (file)
@@ -23,7 +23,6 @@
 #include <linux/compiler.h>
 
 #include "../../Marvell/include/memory.h"
-#include "serial.h"
 
 #include "mpsc.h"
 
diff --git a/board/esd/cpci750/serial.h b/board/esd/cpci750/serial.h
deleted file mode 100644 (file)
index 264e2d2..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * (C) Copyright 2001
- * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
- *
- * modified for marvell db64360 eval board by
- * Ingo Assmus <ingo.assmus@keymile.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
- */
-
-/* serial.h - mostly useful for DUART serial_init in serial.c */
-
-#ifndef __SERIAL_H__
-#define __SERIAL_H__
-
-#if 0
-
-#define B230400         1
-#define B115200         2
-#define B57600          4
-#define B38400          82
-#define B19200          163
-#define B9600           24
-#define B4800           651
-#define B2400           1302
-#define B1200           2604
-#define B600            5208
-#define B300            10417
-#define B150            20833
-#define B110            28409
-#define BDEFAULT        B115200
-
-                               /* this stuff is important to initialize
-                               the DUART channels */
-
-#define        Scale           0x01L           /* distance between port addresses */
-#define        COM1            0x000003f8              /* Keyboard */
-#define COM2           0x000002f8              /* Host */
-
-
-/* Port Definitions relative to base COM port addresses */
-#define DataIn (0x00*Scale)    /* data input port */
-#define DataOut        (0x00*Scale)    /* data output port */
-#define BaudLsb        (0x00*Scale)    /* baud rate divisor least significant byte */
-#define BaudMsb        (0x01*Scale)    /* baud rate divisor most significant byte */
-#define        Ier     (0x01*Scale)    /* interrupt enable register */
-#define        Iir     (0x02*Scale)    /* interrupt identification register */
-#define        Lcr     (0x03*Scale)    /* line control register */
-#define        Mcr     (0x04*Scale)    /* modem control register */
-#define        Lsr     (0x05*Scale)    /* line status register */
-#define        Msr     (0x06*Scale)    /* modem status register */
-
-/* Bit Definitions for above ports */
-#define LcrDlab        0x80    /* b7:   enable baud rate divisor registers */
-#define        LcrDflt 0x03    /* b6-0: no parity, 1 stop, 8 data */
-
-#define        McrRts  0x02    /* b1:  request to send (I am ready to xmit) */
-#define        McrDtr  0x01    /* b0:  data terminal ready (I am alive ready to rcv) */
-#define        McrDflt (McrRts|McrDtr)
-
-#define LsrTxD 0x6000  /* b5: transmit holding register empty (i.e. xmit OK!)*/
-                       /* b6: transmitter empty */
-#define LsrRxD 0x0100  /* b0: received data ready (i.e. got a byte!) */
-
-#define        MsrRi   0x0040  /* b6: ring indicator (other guy is ready to rcv) */
-#define        MsrDsr  0x0020  /* b5: data set ready (other guy is alive ready to rcv */
-#define        MsrCts  0x0010  /* b4: clear to send (other guy is ready to rcv) */
-
-#define IerRda 0xf     /* b0: Enable received data available interrupt */
-
-#endif
-
-#endif /* __SERIAL_H__ */
index 3081fad21a7501781a7e257d62bc160380a2646f..83a421708bdfd746360fa538c0cb969e4003bdc4 100644 (file)
@@ -21,8 +21,6 @@
 #include <ns16550.h>
 #endif
 
-#include "serial.h"
-
 #include "mpsc.h"
 
 DECLARE_GLOBAL_DATA_PTR;
diff --git a/board/evb64260/serial.h b/board/evb64260/serial.h
deleted file mode 100644 (file)
index bac9253..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/* serial.h - mostly useful for DUART serial_init in serial.c */
-
-#ifndef __SERIAL_H__
-#define __SERIAL_H__
-
-#if 0
-
-#define B230400         1
-#define B115200         2
-#define B57600          4
-#define B38400          82
-#define B19200          163
-#define B9600           24
-#define B4800           651
-#define B2400           1302
-#define B1200           2604
-#define B600            5208
-#define B300            10417
-#define B150            20833
-#define B110            28409
-#define BDEFAULT        B115200
-
-                               /* this stuff is important to initialize
-                               the DUART channels */
-
-#define        Scale           0x01L           /* distance between port addresses */
-#define        COM1            0x000003f8              /* Keyboard */
-#define COM2           0x000002f8              /* Host */
-
-
-/* Port Definitions relative to base COM port addresses */
-#define DataIn (0x00*Scale)    /* data input port */
-#define DataOut        (0x00*Scale)    /* data output port */
-#define BaudLsb        (0x00*Scale)    /* baud rate divisor least significant byte */
-#define BaudMsb        (0x01*Scale)    /* baud rate divisor most significant byte */
-#define        Ier     (0x01*Scale)    /* interrupt enable register */
-#define        Iir     (0x02*Scale)    /* interrupt identification register */
-#define        Lcr     (0x03*Scale)    /* line control register */
-#define        Mcr     (0x04*Scale)    /* modem control register */
-#define        Lsr     (0x05*Scale)    /* line status register */
-#define        Msr     (0x06*Scale)    /* modem status register */
-
-/* Bit Definitions for above ports */
-#define LcrDlab        0x80    /* b7:   enable baud rate divisor registers */
-#define        LcrDflt 0x03    /* b6-0: no parity, 1 stop, 8 data */
-
-#define        McrRts  0x02    /* b1:  request to send (I am ready to xmit) */
-#define        McrDtr  0x01    /* b0:  data terminal ready (I am alive ready to rcv) */
-#define        McrDflt (McrRts|McrDtr)
-
-#define LsrTxD 0x6000  /* b5: transmit holding register empty (i.e. xmit OK!)*/
-                       /* b6: transmitter empty */
-#define LsrRxD 0x0100  /* b0: received data ready (i.e. got a byte!) */
-
-#define        MsrRi   0x0040  /* b6: ring indicator (other guy is ready to rcv) */
-#define        MsrDsr  0x0020  /* b5: data set ready (other guy is alive ready to rcv */
-#define        MsrCts  0x0010  /* b4: clear to send (other guy is ready to rcv) */
-
-#define IerRda 0xf     /* b0: Enable received data available interrupt */
-
-#endif
-
-#endif /* __SERIAL_H__ */
index 89040a899e137816d81211bb40abfbccc0d55025..5b7b989860f9646d4f0bd8f52ebd48a121b3411f 100644 (file)
@@ -23,7 +23,6 @@
 #include <linux/compiler.h>
 
 #include "../../Marvell/include/memory.h"
-#include "serial.h"
 
 #include "mpsc.h"
 
diff --git a/board/prodrive/p3mx/serial.h b/board/prodrive/p3mx/serial.h
deleted file mode 100644 (file)
index 264e2d2..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * (C) Copyright 2001
- * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
- *
- * modified for marvell db64360 eval board by
- * Ingo Assmus <ingo.assmus@keymile.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
- */
-
-/* serial.h - mostly useful for DUART serial_init in serial.c */
-
-#ifndef __SERIAL_H__
-#define __SERIAL_H__
-
-#if 0
-
-#define B230400         1
-#define B115200         2
-#define B57600          4
-#define B38400          82
-#define B19200          163
-#define B9600           24
-#define B4800           651
-#define B2400           1302
-#define B1200           2604
-#define B600            5208
-#define B300            10417
-#define B150            20833
-#define B110            28409
-#define BDEFAULT        B115200
-
-                               /* this stuff is important to initialize
-                               the DUART channels */
-
-#define        Scale           0x01L           /* distance between port addresses */
-#define        COM1            0x000003f8              /* Keyboard */
-#define COM2           0x000002f8              /* Host */
-
-
-/* Port Definitions relative to base COM port addresses */
-#define DataIn (0x00*Scale)    /* data input port */
-#define DataOut        (0x00*Scale)    /* data output port */
-#define BaudLsb        (0x00*Scale)    /* baud rate divisor least significant byte */
-#define BaudMsb        (0x01*Scale)    /* baud rate divisor most significant byte */
-#define        Ier     (0x01*Scale)    /* interrupt enable register */
-#define        Iir     (0x02*Scale)    /* interrupt identification register */
-#define        Lcr     (0x03*Scale)    /* line control register */
-#define        Mcr     (0x04*Scale)    /* modem control register */
-#define        Lsr     (0x05*Scale)    /* line status register */
-#define        Msr     (0x06*Scale)    /* modem status register */
-
-/* Bit Definitions for above ports */
-#define LcrDlab        0x80    /* b7:   enable baud rate divisor registers */
-#define        LcrDflt 0x03    /* b6-0: no parity, 1 stop, 8 data */
-
-#define        McrRts  0x02    /* b1:  request to send (I am ready to xmit) */
-#define        McrDtr  0x01    /* b0:  data terminal ready (I am alive ready to rcv) */
-#define        McrDflt (McrRts|McrDtr)
-
-#define LsrTxD 0x6000  /* b5: transmit holding register empty (i.e. xmit OK!)*/
-                       /* b6: transmitter empty */
-#define LsrRxD 0x0100  /* b0: received data ready (i.e. got a byte!) */
-
-#define        MsrRi   0x0040  /* b6: ring indicator (other guy is ready to rcv) */
-#define        MsrDsr  0x0020  /* b5: data set ready (other guy is alive ready to rcv */
-#define        MsrCts  0x0010  /* b4: clear to send (other guy is ready to rcv) */
-
-#define IerRda 0xf     /* b0: Enable received data available interrupt */
-
-#endif
-
-#endif /* __SERIAL_H__ */