From cbca6634888ec9fcde203e6f12f6c5e716f1f90b Mon Sep 17 00:00:00 2001
From: Jesper Nilsson <jesper.nilsson@axis.com>
Date: Thu, 24 Jan 2008 14:30:01 +0100
Subject: CRIS v32: Remove config ifdef around init function for
 drivers/sync_serial.c

The init function should be defined always.
---
 arch/cris/arch-v32/drivers/sync_serial.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

(limited to 'arch/cris/arch-v32/drivers')

diff --git a/arch/cris/arch-v32/drivers/sync_serial.c b/arch/cris/arch-v32/drivers/sync_serial.c
index eddb98707347..47c377df6fb3 100644
--- a/arch/cris/arch-v32/drivers/sync_serial.c
+++ b/arch/cris/arch-v32/drivers/sync_serial.c
@@ -146,9 +146,7 @@ typedef struct sync_port
 } sync_port;
 
 static int etrax_sync_serial_init(void);
-#if defined(CONFIG_ETRAX_SYNCHRONOUS_SERIAL_PORT1)
 static void initialize_port(int portnbr);
-#endif
 static inline int sync_data_avail(struct sync_port *port);
 
 static int sync_serial_open(struct inode *, struct file*);
@@ -294,7 +292,6 @@ static int __init etrax_sync_serial_init(void)
 	return 0;
 }
 
-#if defined(CONFIG_ETRAX_SYNCHRONOUS_SERIAL_PORT1)
 static void __init initialize_port(int portnbr)
 {
 	int __attribute__((unused)) i;
@@ -388,7 +385,6 @@ static void __init initialize_port(int portnbr)
 	port->catch_tr_descr = &port->out_descr[0];
 #endif
 }
-#endif
 
 static inline int sync_data_avail(struct sync_port *port)
 {
@@ -1077,7 +1073,7 @@ static ssize_t sync_serial_write(struct file *file, const char *buf,
 
 	if (signal_pending(current))
 		return -EINTR;
-	}
+
 	DEBUGWRITE(printk(KERN_DEBUG "w d%d c %lu\n",
 			  port->port_nbr, trunc_count));
 	return trunc_count;
-- 
cgit v1.2.1