Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38c3cb5b authored by Richard Knutsson's avatar Richard Knutsson Committed by Greg Kroah-Hartman
Browse files

USB: whiteheat: Convert to generic boolean

parent 5ec1862e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
@@ -1125,11 +1125,11 @@ static int firm_send_command (struct usb_serial_port *port, __u8 command, __u8 *

	/* wait for the command to complete */
	wait_event_interruptible_timeout(command_info->wait_command,
		(command_info->command_finished != FALSE), COMMAND_TIMEOUT);
		(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;
+0 −4
Original line number Diff line number Diff line
@@ -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 */