Commit c2562687 authored by Jesper Juhl's avatar Jesper Juhl Committed by Greg Kroah-Hartman

staging: olpc_dcon.c: Remove a few spaces between casts and variables

Just a trivial style cleanup.
Signed-off-by: default avatarJesper Juhl <jj@chaosbits.net>
Acked-by: default avatarAndres Salomon <dilinger@queued.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5d213086
...@@ -134,7 +134,7 @@ static int dcon_bus_stabilize(struct dcon_priv *dcon, int is_powered_down) ...@@ -134,7 +134,7 @@ static int dcon_bus_stabilize(struct dcon_priv *dcon, int is_powered_down)
power_up: power_up:
if (is_powered_down) { if (is_powered_down) {
x = 1; x = 1;
x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0); x = olpc_ec_cmd(0x26, (unsigned char *)&x, 1, NULL, 0);
if (x) { if (x) {
printk(KERN_WARNING "olpc-dcon: unable to force dcon to power up: %d!\n", printk(KERN_WARNING "olpc-dcon: unable to force dcon to power up: %d!\n",
x); x);
...@@ -153,7 +153,7 @@ static int dcon_bus_stabilize(struct dcon_priv *dcon, int is_powered_down) ...@@ -153,7 +153,7 @@ static int dcon_bus_stabilize(struct dcon_priv *dcon, int is_powered_down)
printk(KERN_ERR "olpc-dcon: unable to stabilize dcon's smbus, reasserting power and praying.\n"); printk(KERN_ERR "olpc-dcon: unable to stabilize dcon's smbus, reasserting power and praying.\n");
BUG_ON(olpc_board_at_least(olpc_board(0xc2))); BUG_ON(olpc_board_at_least(olpc_board(0xc2)));
x = 0; x = 0;
olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0); olpc_ec_cmd(0x26, (unsigned char *)&x, 1, NULL, 0);
msleep(100); msleep(100);
is_powered_down = 1; is_powered_down = 1;
goto power_up; /* argh, stupid hardware.. */ goto power_up; /* argh, stupid hardware.. */
...@@ -219,7 +219,7 @@ static void dcon_sleep(struct dcon_priv *dcon, bool sleep) ...@@ -219,7 +219,7 @@ static void dcon_sleep(struct dcon_priv *dcon, bool sleep)
if (sleep) { if (sleep) {
x = 0; x = 0;
x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0); x = olpc_ec_cmd(0x26, (unsigned char *)&x, 1, NULL, 0);
if (x) if (x)
printk(KERN_WARNING "olpc-dcon: unable to force dcon to power down: %d!\n", printk(KERN_WARNING "olpc-dcon: unable to force dcon to power down: %d!\n",
x); x);
...@@ -598,7 +598,7 @@ static int dcon_fb_notifier(struct notifier_block *self, ...@@ -598,7 +598,7 @@ static int dcon_fb_notifier(struct notifier_block *self,
struct fb_event *evdata = data; struct fb_event *evdata = data;
struct dcon_priv *dcon = container_of(self, struct dcon_priv, struct dcon_priv *dcon = container_of(self, struct dcon_priv,
fbevent_nb); fbevent_nb);
int *blank = (int *) evdata->data; int *blank = (int *)evdata->data;
if (((event != FB_EVENT_BLANK) && (event != FB_EVENT_CONBLANK)) || if (((event != FB_EVENT_BLANK) && (event != FB_EVENT_CONBLANK)) ||
dcon->ignore_fb_events) dcon->ignore_fb_events)
return 0; return 0;
......
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