ChangeSet 1.2237, 2005/04/04 08:06:05-07:00, [EMAIL PROTECTED]

        [PATCH] generic_serial.c portability fix
        
        gs_wait_tx_flushed() should have its second argument (timeout) unsigned
        long, not int.  One of the callers passes it MAX_SCHEDULE_TIMEOUT and
        function itself compares argument with that value.  Since that's
        LONG_MAX, we get breakage on all 64bit platforms.
        
        Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
        Signed-off-by: Al Viro <[EMAIL PROTECTED]>



 generic_serial.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


diff -Nru a/drivers/char/generic_serial.c b/drivers/char/generic_serial.c
--- a/drivers/char/generic_serial.c     2005-04-04 09:08:33 -07:00
+++ b/drivers/char/generic_serial.c     2005-04-04 09:08:33 -07:00
@@ -296,7 +296,7 @@
 }
 
 
-static int gs_wait_tx_flushed (void * ptr, int timeout) 
+static int gs_wait_tx_flushed (void * ptr, unsigned long timeout) 
 {
        struct gs_port *port = ptr;
        unsigned long end_jiffies;
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to