public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mos7840: test and propagate set_uart_reg return value
@ 2008-04-17  4:16 Roel Kluin
  2008-04-17  6:58 ` SL Baur
  2008-04-28 23:53 ` patch usb-mos7840-test-and-propagate-set_uart_reg-return-value.patch added to gregkh-2.6 tree gregkh
  0 siblings, 2 replies; 8+ messages in thread
From: Roel Kluin @ 2008-04-17  4:16 UTC (permalink / raw)
  To: Greg KH, linux-usb, lkml

The test for an mos7840_set_uart_reg() error return value only works when
status is signed. propagate its error value.

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---

diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c
index aeeb9cb..ef1ede2 100644
--- a/drivers/usb/serial/mos7840.c
+++ b/drivers/usb/serial/mos7840.c
@@ -1713,7 +1713,7 @@ static int mos7840_tiocmset(struct usb_serial_port *port, struct file *file,
 {
 	struct moschip_port *mos7840_port;
 	unsigned int mcr;
-	unsigned int status;
+	int status;
 
 	dbg("%s - port %d", __FUNCTION__, port->number);
 
@@ -1739,11 +1739,10 @@ static int mos7840_tiocmset(struct usb_serial_port *port, struct file *file,
 
 	mos7840_port->shadowMCR = mcr;
 
-	status = 0;
 	status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
 	if (status < 0) {
 		dbg("setting MODEM_CONTROL_REGISTER Failed\n");
-		return -1;
+		return status;
 	}
 
 	return 0;

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-05-01  1:56 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-17  4:16 [PATCH] mos7840: test and propagate set_uart_reg return value Roel Kluin
2008-04-17  6:58 ` SL Baur
2008-04-28 23:53 ` patch usb-mos7840-test-and-propagate-set_uart_reg-return-value.patch added to gregkh-2.6 tree gregkh
2008-04-29  6:31   ` SL Baur
2008-04-29  6:51     ` Greg KH
2008-04-29  7:33       ` SL Baur
2008-04-30  6:03         ` Greg KH
2008-05-01  1:56           ` SL Baur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox