Commit 8c31eb01 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: serio_raw - use bool for boolean data

Reviewed-by: default avatarWanlong Gao <gaowanlong@cn.fujitsu.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 843e784a
......@@ -139,9 +139,9 @@ static int serio_raw_release(struct inode *inode, struct file *file)
return 0;
}
static int serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
static bool serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
{
int empty;
bool empty;
serio_pause_rx(serio_raw->serio);
......@@ -394,7 +394,7 @@ static struct serio_driver serio_raw_drv = {
.connect = serio_raw_connect,
.reconnect = serio_raw_reconnect,
.disconnect = serio_raw_disconnect,
.manual_bind = 1,
.manual_bind = true,
};
static int __init serio_raw_init(void)
......
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