Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=38c3cb5b677cf551cd93a494dc5c551271d90ac1
Commit:     38c3cb5b677cf551cd93a494dc5c551271d90ac1
Parent:     5ec1862e7b612d804ca10a0475dccf98c857efec
Author:     Richard Knutsson <[EMAIL PROTECTED]>
AuthorDate: Mon Mar 26 22:00:28 2007 -0800
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Apr 27 13:28:39 2007 -0700

    USB: whiteheat: Convert to generic boolean
    
    Signed-off-by: Richard Knutsson <[EMAIL PROTECTED]>
    Acked-by: Stuart MacDonald <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/serial/whiteheat.c |    8 ++++----
 drivers/usb/serial/whiteheat.h |    4 ----
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/usb/serial/whiteheat.c b/drivers/usb/serial/whiteheat.c
index bf16e9e..27c5f8f 100644
--- a/drivers/usb/serial/whiteheat.c
+++ b/drivers/usb/serial/whiteheat.c
@@ -1109,7 +1109,7 @@ static int firm_send_command (struct usb_serial_port 
*port, __u8 command, __u8 *
        command_port = port->serial->port[COMMAND_PORT];
        command_info = usb_get_serial_port_data(command_port);
        spin_lock_irqsave(&command_info->lock, flags);
-       command_info->command_finished = FALSE;
+       command_info->command_finished = false;
        
        transfer_buffer = (__u8 *)command_port->write_urb->transfer_buffer;
        transfer_buffer[0] = command;
@@ -1124,12 +1124,12 @@ static int firm_send_command (struct usb_serial_port 
*port, __u8 command, __u8 *
        spin_unlock_irqrestore(&command_info->lock, flags);
 
        /* wait for the command to complete */
-       wait_event_interruptible_timeout(command_info->wait_command, 
-               (command_info->command_finished != FALSE), COMMAND_TIMEOUT);
+       wait_event_interruptible_timeout(command_info->wait_command,
+               (bool)command_info->command_finished, COMMAND_TIMEOUT);
 
        spin_lock_irqsave(&command_info->lock, flags);
 
-       if (command_info->command_finished == FALSE) {
+       if (command_info->command_finished == false) {
                dbg("%s - command timed out.", __FUNCTION__);
                retval = -ETIMEDOUT;
                goto exit;
diff --git a/drivers/usb/serial/whiteheat.h b/drivers/usb/serial/whiteheat.h
index d714eff..f160797 100644
--- a/drivers/usb/serial/whiteheat.h
+++ b/drivers/usb/serial/whiteheat.h
@@ -20,10 +20,6 @@
 #define __LINUX_USB_SERIAL_WHITEHEAT_H
 
 
-#define FALSE  0
-#define TRUE   1
-
-
 /* WhiteHEAT commands */
 #define WHITEHEAT_OPEN                 1       /* open the port */
 #define WHITEHEAT_CLOSE                        2       /* close the port */
-
To unsubscribe from this list: send the line "unsubscribe git-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