[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1319587427.14932.7.camel@Joe-Laptop>
Date: Tue, 25 Oct 2011 17:03:47 -0700
From: Joe Perches <joe@...ches.com>
To: "K. Y. Srinivasan" <kys@...rosoft.com>
Cc: gregkh@...e.de, linux-kernel@...r.kernel.org,
devel@...uxdriverproject.org, virtualization@...ts.osdl.org,
ohering@...e.com, dmitry.torokhov@...il.com,
Haiyang Zhang <haiyangz@...rosoft.com>
Subject: Re: [PATCH 1/6] Staging: hv: mousevsc: Make boolean states boolean
On Tue, 2011-10-25 at 17:19 -0700, K. Y. Srinivasan wrote:
> Make some state that is boolean in nature, a boolean variable.
[]
> diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
[]
@@ -148,7 +148,7 @@ struct mousevsc_prt_msg {
> */
> struct mousevsc_dev {
> struct hv_device *device;
> - unsigned char init_complete;
> + bool init_complete;
> struct mousevsc_prt_msg protocol_req;
> struct mousevsc_prt_msg protocol_resp;
> /* Synchronize the request/response if needed */
> @@ -159,7 +159,7 @@ struct mousevsc_dev {
> unsigned char *report_desc;
> u32 report_desc_size;
> struct hv_input_dev_info hid_dev_info;
> - int connected;
> + bool connected;
> struct hid_device *hid_device;
> };
One of the bools should be moved to be adjacent to the other.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists