Commit 70851233 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Dmitry Torokhov

Input: appletouch - use true and false for boolean values

Assign true or false to boolean variables instead of an integer value.

This issue was detected with the help of Coccinelle.
Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 62f0f079
...@@ -587,7 +587,7 @@ static void atp_complete_geyser_1_2(struct urb *urb) ...@@ -587,7 +587,7 @@ static void atp_complete_geyser_1_2(struct urb *urb)
/* Perform size detection, if not done already */ /* Perform size detection, if not done already */
if (unlikely(!dev->size_detect_done)) { if (unlikely(!dev->size_detect_done)) {
atp_detect_size(dev); atp_detect_size(dev);
dev->size_detect_done = 1; dev->size_detect_done = true;
goto exit; goto exit;
} }
} }
...@@ -813,7 +813,7 @@ static int atp_open(struct input_dev *input) ...@@ -813,7 +813,7 @@ static int atp_open(struct input_dev *input)
if (usb_submit_urb(dev->urb, GFP_ATOMIC)) if (usb_submit_urb(dev->urb, GFP_ATOMIC))
return -EIO; return -EIO;
dev->open = 1; dev->open = true;
return 0; return 0;
} }
...@@ -823,7 +823,7 @@ static void atp_close(struct input_dev *input) ...@@ -823,7 +823,7 @@ static void atp_close(struct input_dev *input)
usb_kill_urb(dev->urb); usb_kill_urb(dev->urb);
cancel_work_sync(&dev->work); cancel_work_sync(&dev->work);
dev->open = 0; dev->open = false;
} }
static int atp_handle_geyser(struct atp *dev) static int atp_handle_geyser(struct atp *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment