linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] missing return value from pci_xircom_fn() in drivers/char/serial.c
@ 2001-05-13 21:30 Jesper Juhl
  2001-05-14 21:50 ` Bill Nottingham
  0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2001-05-13 21:30 UTC (permalink / raw)
  To: linux-serial; +Cc: alan, linux-kernel


Hi,

I'm using the 2.4.4-ac8 kernel and found that the pci_xircom_fn() 
function in drivers/char/serial.c does not return a value even though it 
is defined as returning int. I took a look at the other initializer 
functions and they all return 0 (zero) on success, so I assumed that the 
correct return value for the pci_xircom_fn() function would also be 0. I 
don't know anything specific about what goes on in serial.c, so I may be 
wrong on this, but I do know that the function should either return some 
value or be declared as returning void, and since declaring it void 
would mess up the way it is used I guess it should return a value.

I have made a patch against 2.4.4-ac8 that makes the change, it is 
below. I guess someone more knowledgeable than me can probably see if 
this is correct. If this is completely bogus, then please just disregard 
this email.


--- linux-2.4.4-ac8/drivers/char/serial.c.orig  Sun May 13 23:13:02 2001
+++ linux-2.4.4-ac8/drivers/char/serial.c       Sun May 13 23:13:24 2001
@@ -4190,6 +4190,7 @@
  {
         __set_current_state(TASK_UNINTERRUPTIBLE);
         schedule_timeout(HZ/10);
+       return(0);
  }

  /*


Best regards,
Jesper Juhl - juhl@eisenstein.dk


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

* Re: [PATCH] missing return value from pci_xircom_fn() in drivers/char/serial.c
  2001-05-13 21:30 [PATCH] missing return value from pci_xircom_fn() in drivers/char/serial.c Jesper Juhl
@ 2001-05-14 21:50 ` Bill Nottingham
  0 siblings, 0 replies; 2+ messages in thread
From: Bill Nottingham @ 2001-05-14 21:50 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: linux-serial, alan, linux-kernel

Jesper Juhl (juhl@eisenstein.dk) said: 
> I have made a patch against 2.4.4-ac8 that makes the change, it is 
> below. I guess someone more knowledgeable than me can probably see if 
> this is correct. If this is completely bogus, then please just disregard 
> this email.

Yup, it's right. My bad. :)

Bill

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

end of thread, other threads:[~2001-05-14 21:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-13 21:30 [PATCH] missing return value from pci_xircom_fn() in drivers/char/serial.c Jesper Juhl
2001-05-14 21:50 ` Bill Nottingham

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).