All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: olpc_dcon: checkpatch.pl fixes for olpc_dcon.c file.
@ 2011-02-03 15:22 Marek Belisko
  2011-02-04 23:23 ` Andres Salomon
  0 siblings, 1 reply; 5+ messages in thread
From: Marek Belisko @ 2011-02-03 15:22 UTC (permalink / raw)
  To: gregkh; +Cc: dilinger, cjb, jon.nettleton, devel, linux-kernel, Marek Belisko

Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
---
 drivers/staging/olpc_dcon/olpc_dcon.c |   84 ++++++++++++++++++---------------
 1 files changed, 46 insertions(+), 38 deletions(-)

diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c b/drivers/staging/olpc_dcon/olpc_dcon.c
index 7221bb8..b19cd34 100644
--- a/drivers/staging/olpc_dcon/olpc_dcon.c
+++ b/drivers/staging/olpc_dcon/olpc_dcon.c
@@ -24,7 +24,7 @@
 #include <linux/backlight.h>
 #include <linux/device.h>
 #include <linux/notifier.h>
-#include <asm/uaccess.h>
+#include <linux/uaccess.h>
 #include <linux/ctype.h>
 #include <linux/reboot.h>
 #include <asm/tsc.h>
@@ -87,14 +87,14 @@ static unsigned short dcon_disp_mode;
 /* Variables used during switches */
 static int dcon_switched;
 static struct timespec dcon_irq_time;
-static struct timespec dcon_load_time; 
+static struct timespec dcon_load_time;
 
 static DECLARE_WAIT_QUEUE_HEAD(dcon_wait_queue);
 
 static unsigned short normal_i2c[] = { 0x0d, I2C_CLIENT_END };
 
-#define dcon_write(reg,val) i2c_smbus_write_word_data(dcon_client,reg,val)
-#define dcon_read(reg) i2c_smbus_read_word_data(dcon_client,reg)
+#define dcon_write(reg, val) i2c_smbus_write_word_data(dcon_client, reg, val)
+#define dcon_read(reg) i2c_smbus_read_word_data(dcon_client, reg)
 
 /* The current backlight value - this saves us some smbus traffic */
 static int bl_val = -1;
@@ -117,7 +117,8 @@ static int dcon_hw_init(struct i2c_client *client, int is_init)
 	if (is_init) {
 		printk(KERN_INFO "olpc-dcon:  Discovered DCON version %x\n",
 				ver & 0xFF);
-		if ((rc = pdata->init()) != 0) {
+		rc = pdata->init();
+		if (rc != 0) {
 			printk(KERN_ERR "olpc-dcon:  Unable to init.\n");
 			goto err;
 		}
@@ -133,14 +134,13 @@ static int dcon_hw_init(struct i2c_client *client, int is_init)
 		i2c_smbus_write_word_data(client, 0x0b, 0x007a);
 		i2c_smbus_write_word_data(client, 0x36, 0x025c);
 		i2c_smbus_write_word_data(client, 0x37, 0x025e);
-		
+
 		/* Initialise SDRAM */
 
 		i2c_smbus_write_word_data(client, 0x3b, 0x002b);
 		i2c_smbus_write_word_data(client, 0x41, 0x0101);
 		i2c_smbus_write_word_data(client, 0x42, 0x0101);
-	}
-	else if (!noinit) {
+	} else if (!noinit) {
 		/* SDRAM setup/hold time */
 		i2c_smbus_write_word_data(client, 0x3a, 0xc040);
 		i2c_smbus_write_word_data(client, 0x41, 0x0000);
@@ -181,14 +181,15 @@ static int dcon_bus_stabilize(struct i2c_client *client, int is_powered_down)
 power_up:
 	if (is_powered_down) {
 		x = 1;
-		if ((x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0))) {
+		x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0);
+		if (x) {
 			printk(KERN_WARNING "olpc-dcon:  unable to force dcon "
 					"to power up: %d!\n", x);
 			return x;
 		}
 		msleep(10); /* we'll be conservative */
 	}
-	
+
 	pdata->bus_stabilize_wiggle();
 
 	for (x = -1, timeout = 50; timeout && x < 0; timeout--) {
@@ -261,8 +262,7 @@ static int dcon_set_output(int arg)
 	if (arg == DCON_OUTPUT_MONO) {
 		dcon_disp_mode &= ~(MODE_CSWIZZLE | MODE_COL_AA);
 		dcon_disp_mode |= MODE_MONO_LUMA;
-	}
-	else {
+	} else {
 		dcon_disp_mode &= ~(MODE_MONO_LUMA);
 		dcon_disp_mode |= MODE_CSWIZZLE;
 		if (useaa)
@@ -291,18 +291,18 @@ static void dcon_sleep(int state)
 
 	if (state == DCON_SLEEP) {
 		x = 0;
-		if ((x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0)))
+		x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL, 0);
+		if (x)
 			printk(KERN_WARNING "olpc-dcon:  unable to force dcon "
 					"to power down: %d!\n", x);
 		else
 			dcon_sleep_val = state;
-	}
-	else {
+	} else {
 		/* Only re-enable the backlight if the backlight value is set */
 		if (bl_val != 0)
 			dcon_disp_mode |= MODE_BL_ENABLE;
-
-		if ((x=dcon_bus_stabilize(dcon_client, 1)))
+		x = dcon_bus_stabilize(dcon_client, 1);
+		if (x)
 			printk(KERN_WARNING "olpc-dcon:  unable to reinit dcon"
 					" hardware: %d!\n", x);
 		else
@@ -316,14 +316,14 @@ static void dcon_sleep(int state)
 }
 
 /* the DCON seems to get confused if we change DCONLOAD too
- * frequently -- i.e., approximately faster than frame time. 
+ * frequently -- i.e., approximately faster than frame time.
  * normally we don't change it this fast, so in general we won't
  * delay here.
  */
 void dcon_load_holdoff(void)
 {
 	struct timespec delta_t, now;
-	while(1) {
+	while (1) {
 		getnstimeofday(&now);
 		delta_t = timespec_sub(now, dcon_load_time);
 		if (delta_t.tv_sec != 0 ||
@@ -352,10 +352,12 @@ static void dcon_source_switch(struct work_struct *work)
 		printk("dcon_source_switch to CPU\n");
 		/* Enable the scanline interrupt bit */
 		if (dcon_write(DCON_REG_MODE, dcon_disp_mode | MODE_SCAN_INT))
-			printk(KERN_ERR "olpc-dcon:  couldn't enable scanline interrupt!\n");
+			printk(KERN_ERR
+			       "olpc-dcon:  couldn't enable scanline interrupt!\n");
 		else {
 			/* Wait up to one second for the scanline interrupt */
-			wait_event_timeout(dcon_wait_queue, dcon_switched == 1, HZ);
+			wait_event_timeout(dcon_wait_queue,
+					   dcon_switched == 1, HZ);
 		}
 
 		if (!dcon_switched)
@@ -396,7 +398,7 @@ static void dcon_source_switch(struct work_struct *work)
 		int t;
 		struct timespec delta_t;
 
-		printk("dcon_source_switch to DCON\n");
+		printk(KERN_INFO "dcon_source_switch to DCON\n");
 
 		add_wait_queue(&dcon_wait_queue, &wait);
 		set_current_state(TASK_UNINTERRUPTIBLE);
@@ -420,7 +422,7 @@ static void dcon_source_switch(struct work_struct *work)
 			 * the time between asserting DCONLOAD and the IRQ --
 			 * if it's less than 20msec, then the DCON couldn't
 			 * have seen two VSYNC pulses.  in that case we
-			 * deassert and reassert, and hope for the best. 
+			 * deassert and reassert, and hope for the best.
 			 * see http://dev.laptop.org/ticket/9664
 			 */
 			delta_t = timespec_sub(dcon_irq_time, dcon_load_time);
@@ -471,7 +473,8 @@ static void dcon_set_source_sync(int arg)
 	flush_scheduled_work();
 }
 
-static int dconbl_set(struct backlight_device *dev) {
+static int dconbl_set(struct backlight_device *dev)
+{
 
 	int level = dev->props.brightness;
 
@@ -482,7 +485,8 @@ static int dconbl_set(struct backlight_device *dev) {
 	return 0;
 }
 
-static int dconbl_get(struct backlight_device *dev) {
+static int dconbl_get(struct backlight_device *dev)
+{
 	return dcon_get_backlight();
 }
 
@@ -521,7 +525,7 @@ static int _strtoul(const char *buf, int len, unsigned int *val)
 {
 
 	char *endp;
-	unsigned int output = simple_strtoul(buf, &endp, 0);
+	unsigned int output = strict_strtoul(buf, &endp, 0);
 	int size = endp - buf;
 
 	if (*endp && isspace(*endp))
@@ -559,7 +563,7 @@ static ssize_t dcon_freeze_store(struct device *dev,
 	if (_strtoul(buf, count, &output))
 		return -EINVAL;
 
-	printk("dcon_freeze_store: %d\n", output);
+	printk(KERN_INFO "dcon_freeze_store: %d\n", output);
 
 	switch (output) {
 	case 0:
@@ -568,7 +572,7 @@ static ssize_t dcon_freeze_store(struct device *dev,
 	case 1:
 		dcon_set_source_sync(DCON_SOURCE_DCON);
 		break;
-	case 2:  // normally unused
+	case 2:  /* normally unused */
 		dcon_set_source(DCON_SOURCE_DCON);
 		break;
 	default:
@@ -620,7 +624,8 @@ static const struct backlight_ops dcon_bl_ops = {
 };
 
 
-static int dcon_reboot_notify(struct notifier_block *nb, unsigned long foo, void *bar)
+static int dcon_reboot_notify(struct notifier_block *nb,
+			      unsigned long foo, void *bar)
 {
 	if (dcon_client == NULL)
 		return 0;
@@ -636,7 +641,8 @@ static struct notifier_block dcon_nb = {
 	.priority = -1,
 };
 
-static int unfreeze_on_panic(struct notifier_block *nb, unsigned long e, void *p)
+static int unfreeze_on_panic(struct notifier_block *nb,
+			     unsigned long e, void *p)
 {
 	pdata->set_dconload(1);
 	return NOTIFY_DONE;
@@ -650,7 +656,8 @@ static struct notifier_block dcon_panic_nb = {
  * When the framebuffer sleeps due to external sources (e.g. user idle), power
  * down the DCON as well.  Power it back up when the fb comes back to life.
  */
-static int fb_notifier_callback(struct notifier_block *self, unsigned long event, void *data)
+static int fb_notifier_callback(struct notifier_block *self,
+				unsigned long event, void *data)
 {
 	struct fb_event *evdata = data;
 	int *blank = (int *) evdata->data;
@@ -688,19 +695,20 @@ static int dcon_probe(struct i2c_client *client, const struct i2c_device_id *id)
 	dcon_device = platform_device_alloc("dcon", -1);
 
 	if (dcon_device == NULL) {
-		printk("dcon:  Unable to create the DCON device\n");
+		printk(KERN_ERR "dcon:  Unable to create the DCON device\n");
 		rc = -ENOMEM;
 		goto eirq;
 	}
 	/* Place holder...*/
 	i2c_set_clientdata(client, dcon_device);
+	rc = platform_device_add(dcon_device);
 
-	if ((rc = platform_device_add(dcon_device))) {
-		printk("dcon:  Unable to add the DCON device\n");
+	if (rc) {
+		printk(KERN_ERR "dcon:  Unable to add the DCON device\n");
 		goto edev;
 	}
 
-	for(i = 0; i < ARRAY_SIZE(dcon_device_files); i++) {
+	for (i = 0; i < ARRAY_SIZE(dcon_device_files); i++) {
 		rc = device_create_file(&dcon_device->dev,
 					&dcon_device_files[i]);
 		if (rc) {
@@ -717,10 +725,10 @@ static int dcon_probe(struct i2c_client *client, const struct i2c_device_id *id)
 		NULL, &dcon_bl_ops, NULL);
 
 	if (IS_ERR(dcon_bl_dev)) {
-		printk("Could not register the backlight device for the DCON (%ld)\n", PTR_ERR(dcon_bl_dev));
+		printk(KERN_ERR "Cannot register the backlight device (%ld)\n",
+		       PTR_ERR(dcon_bl_dev));
 		dcon_bl_dev = NULL;
-	}
-	else {
+	} else {
 		dcon_bl_dev->props.max_brightness = 15;
 		dcon_bl_dev->props.power = FB_BLANK_UNBLANK;
 		dcon_bl_dev->props.brightness = dcon_get_backlight();
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] staging: olpc_dcon: checkpatch.pl fixes for olpc_dcon.c file.
  2011-02-03 15:22 [PATCH] staging: olpc_dcon: checkpatch.pl fixes for olpc_dcon.c file Marek Belisko
@ 2011-02-04 23:23 ` Andres Salomon
  2011-02-04 23:44   ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Andres Salomon @ 2011-02-04 23:23 UTC (permalink / raw)
  To: Marek Belisko; +Cc: gregkh, cjb, jon.nettleton, devel, linux-kernel

No opinions on this patch (there are some things I'd do differently,
but overall it looks fine).  I'd just like to ensure that if it's
merged, it gets into Linus's tree quickly so that the DCON reworking
that I'm planning to do doesn't get sidetracked by conflicts.



On Thu,  3 Feb 2011 16:22:52 +0100
Marek Belisko <marek.belisko@open-nandra.com> wrote:

> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
> ---
>  drivers/staging/olpc_dcon/olpc_dcon.c |   84
> ++++++++++++++++++--------------- 1 files changed, 46 insertions(+),
> 38 deletions(-)
> 
> diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c
> b/drivers/staging/olpc_dcon/olpc_dcon.c index 7221bb8..b19cd34 100644
> --- a/drivers/staging/olpc_dcon/olpc_dcon.c
> +++ b/drivers/staging/olpc_dcon/olpc_dcon.c
> @@ -24,7 +24,7 @@
>  #include <linux/backlight.h>
>  #include <linux/device.h>
>  #include <linux/notifier.h>
> -#include <asm/uaccess.h>
> +#include <linux/uaccess.h>
>  #include <linux/ctype.h>
>  #include <linux/reboot.h>
>  #include <asm/tsc.h>
> @@ -87,14 +87,14 @@ static unsigned short dcon_disp_mode;
>  /* Variables used during switches */
>  static int dcon_switched;
>  static struct timespec dcon_irq_time;
> -static struct timespec dcon_load_time; 
> +static struct timespec dcon_load_time;
>  
>  static DECLARE_WAIT_QUEUE_HEAD(dcon_wait_queue);
>  
>  static unsigned short normal_i2c[] = { 0x0d, I2C_CLIENT_END };
>  
> -#define dcon_write(reg,val)
> i2c_smbus_write_word_data(dcon_client,reg,val) -#define
> dcon_read(reg) i2c_smbus_read_word_data(dcon_client,reg) +#define
> dcon_write(reg, val) i2c_smbus_write_word_data(dcon_client, reg, val)
> +#define dcon_read(reg) i2c_smbus_read_word_data(dcon_client, reg) 
>  /* The current backlight value - this saves us some smbus traffic */
>  static int bl_val = -1;
> @@ -117,7 +117,8 @@ static int dcon_hw_init(struct i2c_client
> *client, int is_init) if (is_init) {
>  		printk(KERN_INFO "olpc-dcon:  Discovered DCON
> version %x\n", ver & 0xFF);
> -		if ((rc = pdata->init()) != 0) {
> +		rc = pdata->init();
> +		if (rc != 0) {
>  			printk(KERN_ERR "olpc-dcon:  Unable to
> init.\n"); goto err;
>  		}
> @@ -133,14 +134,13 @@ static int dcon_hw_init(struct i2c_client
> *client, int is_init) i2c_smbus_write_word_data(client, 0x0b, 0x007a);
>  		i2c_smbus_write_word_data(client, 0x36, 0x025c);
>  		i2c_smbus_write_word_data(client, 0x37, 0x025e);
> -		
> +
>  		/* Initialise SDRAM */
>  
>  		i2c_smbus_write_word_data(client, 0x3b, 0x002b);
>  		i2c_smbus_write_word_data(client, 0x41, 0x0101);
>  		i2c_smbus_write_word_data(client, 0x42, 0x0101);
> -	}
> -	else if (!noinit) {
> +	} else if (!noinit) {
>  		/* SDRAM setup/hold time */
>  		i2c_smbus_write_word_data(client, 0x3a, 0xc040);
>  		i2c_smbus_write_word_data(client, 0x41, 0x0000);
> @@ -181,14 +181,15 @@ static int dcon_bus_stabilize(struct i2c_client
> *client, int is_powered_down) power_up:
>  	if (is_powered_down) {
>  		x = 1;
> -		if ((x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1,
> NULL, 0))) {
> +		x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL,
> 0);
> +		if (x) {
>  			printk(KERN_WARNING "olpc-dcon:  unable to
> force dcon " "to power up: %d!\n", x);
>  			return x;
>  		}
>  		msleep(10); /* we'll be conservative */
>  	}
> -	
> +
>  	pdata->bus_stabilize_wiggle();
>  
>  	for (x = -1, timeout = 50; timeout && x < 0; timeout--) {
> @@ -261,8 +262,7 @@ static int dcon_set_output(int arg)
>  	if (arg == DCON_OUTPUT_MONO) {
>  		dcon_disp_mode &= ~(MODE_CSWIZZLE | MODE_COL_AA);
>  		dcon_disp_mode |= MODE_MONO_LUMA;
> -	}
> -	else {
> +	} else {
>  		dcon_disp_mode &= ~(MODE_MONO_LUMA);
>  		dcon_disp_mode |= MODE_CSWIZZLE;
>  		if (useaa)
> @@ -291,18 +291,18 @@ static void dcon_sleep(int state)
>  
>  	if (state == DCON_SLEEP) {
>  		x = 0;
> -		if ((x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1,
> NULL, 0)))
> +		x = olpc_ec_cmd(0x26, (unsigned char *) &x, 1, NULL,
> 0);
> +		if (x)
>  			printk(KERN_WARNING "olpc-dcon:  unable to
> force dcon " "to power down: %d!\n", x);
>  		else
>  			dcon_sleep_val = state;
> -	}
> -	else {
> +	} else {
>  		/* Only re-enable the backlight if the backlight
> value is set */ if (bl_val != 0)
>  			dcon_disp_mode |= MODE_BL_ENABLE;
> -
> -		if ((x=dcon_bus_stabilize(dcon_client, 1)))
> +		x = dcon_bus_stabilize(dcon_client, 1);
> +		if (x)
>  			printk(KERN_WARNING "olpc-dcon:  unable to
> reinit dcon" " hardware: %d!\n", x);
>  		else
> @@ -316,14 +316,14 @@ static void dcon_sleep(int state)
>  }
>  
>  /* the DCON seems to get confused if we change DCONLOAD too
> - * frequently -- i.e., approximately faster than frame time. 
> + * frequently -- i.e., approximately faster than frame time.
>   * normally we don't change it this fast, so in general we won't
>   * delay here.
>   */
>  void dcon_load_holdoff(void)
>  {
>  	struct timespec delta_t, now;
> -	while(1) {
> +	while (1) {
>  		getnstimeofday(&now);
>  		delta_t = timespec_sub(now, dcon_load_time);
>  		if (delta_t.tv_sec != 0 ||
> @@ -352,10 +352,12 @@ static void dcon_source_switch(struct
> work_struct *work) printk("dcon_source_switch to CPU\n");
>  		/* Enable the scanline interrupt bit */
>  		if (dcon_write(DCON_REG_MODE, dcon_disp_mode |
> MODE_SCAN_INT))
> -			printk(KERN_ERR "olpc-dcon:  couldn't enable
> scanline interrupt!\n");
> +			printk(KERN_ERR
> +			       "olpc-dcon:  couldn't enable scanline
> interrupt!\n"); else {
>  			/* Wait up to one second for the scanline
> interrupt */
> -			wait_event_timeout(dcon_wait_queue,
> dcon_switched == 1, HZ);
> +			wait_event_timeout(dcon_wait_queue,
> +					   dcon_switched == 1, HZ);
>  		}
>  
>  		if (!dcon_switched)
> @@ -396,7 +398,7 @@ static void dcon_source_switch(struct work_struct
> *work) int t;
>  		struct timespec delta_t;
>  
> -		printk("dcon_source_switch to DCON\n");
> +		printk(KERN_INFO "dcon_source_switch to DCON\n");
>  
>  		add_wait_queue(&dcon_wait_queue, &wait);
>  		set_current_state(TASK_UNINTERRUPTIBLE);
> @@ -420,7 +422,7 @@ static void dcon_source_switch(struct work_struct
> *work)
>  			 * the time between asserting DCONLOAD and
> the IRQ --
>  			 * if it's less than 20msec, then the DCON
> couldn't
>  			 * have seen two VSYNC pulses.  in that case
> we
> -			 * deassert and reassert, and hope for the
> best. 
> +			 * deassert and reassert, and hope for the
> best.
>  			 * see http://dev.laptop.org/ticket/9664
>  			 */
>  			delta_t = timespec_sub(dcon_irq_time,
> dcon_load_time); @@ -471,7 +473,8 @@ static void
> dcon_set_source_sync(int arg) flush_scheduled_work();
>  }
>  
> -static int dconbl_set(struct backlight_device *dev) {
> +static int dconbl_set(struct backlight_device *dev)
> +{
>  
>  	int level = dev->props.brightness;
>  
> @@ -482,7 +485,8 @@ static int dconbl_set(struct backlight_device
> *dev) { return 0;
>  }
>  
> -static int dconbl_get(struct backlight_device *dev) {
> +static int dconbl_get(struct backlight_device *dev)
> +{
>  	return dcon_get_backlight();
>  }
>  
> @@ -521,7 +525,7 @@ static int _strtoul(const char *buf, int len,
> unsigned int *val) {
>  
>  	char *endp;
> -	unsigned int output = simple_strtoul(buf, &endp, 0);
> +	unsigned int output = strict_strtoul(buf, &endp, 0);
>  	int size = endp - buf;
>  
>  	if (*endp && isspace(*endp))
> @@ -559,7 +563,7 @@ static ssize_t dcon_freeze_store(struct device
> *dev, if (_strtoul(buf, count, &output))
>  		return -EINVAL;
>  
> -	printk("dcon_freeze_store: %d\n", output);
> +	printk(KERN_INFO "dcon_freeze_store: %d\n", output);
>  
>  	switch (output) {
>  	case 0:
> @@ -568,7 +572,7 @@ static ssize_t dcon_freeze_store(struct device
> *dev, case 1:
>  		dcon_set_source_sync(DCON_SOURCE_DCON);
>  		break;
> -	case 2:  // normally unused
> +	case 2:  /* normally unused */
>  		dcon_set_source(DCON_SOURCE_DCON);
>  		break;
>  	default:
> @@ -620,7 +624,8 @@ static const struct backlight_ops dcon_bl_ops = {
>  };
>  
>  
> -static int dcon_reboot_notify(struct notifier_block *nb, unsigned
> long foo, void *bar) +static int dcon_reboot_notify(struct
> notifier_block *nb,
> +			      unsigned long foo, void *bar)
>  {
>  	if (dcon_client == NULL)
>  		return 0;
> @@ -636,7 +641,8 @@ static struct notifier_block dcon_nb = {
>  	.priority = -1,
>  };
>  
> -static int unfreeze_on_panic(struct notifier_block *nb, unsigned
> long e, void *p) +static int unfreeze_on_panic(struct notifier_block
> *nb,
> +			     unsigned long e, void *p)
>  {
>  	pdata->set_dconload(1);
>  	return NOTIFY_DONE;
> @@ -650,7 +656,8 @@ static struct notifier_block dcon_panic_nb = {
>   * When the framebuffer sleeps due to external sources (e.g. user
> idle), power
>   * down the DCON as well.  Power it back up when the fb comes back
> to life. */
> -static int fb_notifier_callback(struct notifier_block *self,
> unsigned long event, void *data) +static int
> fb_notifier_callback(struct notifier_block *self,
> +				unsigned long event, void *data)
>  {
>  	struct fb_event *evdata = data;
>  	int *blank = (int *) evdata->data;
> @@ -688,19 +695,20 @@ static int dcon_probe(struct i2c_client
> *client, const struct i2c_device_id *id) dcon_device =
> platform_device_alloc("dcon", -1); 
>  	if (dcon_device == NULL) {
> -		printk("dcon:  Unable to create the DCON device\n");
> +		printk(KERN_ERR "dcon:  Unable to create the DCON
> device\n"); rc = -ENOMEM;
>  		goto eirq;
>  	}
>  	/* Place holder...*/
>  	i2c_set_clientdata(client, dcon_device);
> +	rc = platform_device_add(dcon_device);
>  
> -	if ((rc = platform_device_add(dcon_device))) {
> -		printk("dcon:  Unable to add the DCON device\n");
> +	if (rc) {
> +		printk(KERN_ERR "dcon:  Unable to add the DCON
> device\n"); goto edev;
>  	}
>  
> -	for(i = 0; i < ARRAY_SIZE(dcon_device_files); i++) {
> +	for (i = 0; i < ARRAY_SIZE(dcon_device_files); i++) {
>  		rc = device_create_file(&dcon_device->dev,
>  					&dcon_device_files[i]);
>  		if (rc) {
> @@ -717,10 +725,10 @@ static int dcon_probe(struct i2c_client
> *client, const struct i2c_device_id *id) NULL, &dcon_bl_ops, NULL);
>  
>  	if (IS_ERR(dcon_bl_dev)) {
> -		printk("Could not register the backlight device for
> the DCON (%ld)\n", PTR_ERR(dcon_bl_dev));
> +		printk(KERN_ERR "Cannot register the backlight
> device (%ld)\n",
> +		       PTR_ERR(dcon_bl_dev));
>  		dcon_bl_dev = NULL;
> -	}
> -	else {
> +	} else {
>  		dcon_bl_dev->props.max_brightness = 15;
>  		dcon_bl_dev->props.power = FB_BLANK_UNBLANK;
>  		dcon_bl_dev->props.brightness = dcon_get_backlight();


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] staging: olpc_dcon: checkpatch.pl fixes for olpc_dcon.c file.
  2011-02-04 23:23 ` Andres Salomon
@ 2011-02-04 23:44   ` Greg KH
  2011-02-06 22:38     ` [PATCH] olpc_dcon: revert strtoul change Andres Salomon
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2011-02-04 23:44 UTC (permalink / raw)
  To: Andres Salomon; +Cc: Marek Belisko, cjb, jon.nettleton, devel, linux-kernel

On Fri, Feb 04, 2011 at 03:23:41PM -0800, Andres Salomon wrote:
> No opinions on this patch (there are some things I'd do differently,
> but overall it looks fine).  I'd just like to ensure that if it's
> merged, it gets into Linus's tree quickly so that the DCON reworking
> that I'm planning to do doesn't get sidetracked by conflicts.

It is planned to go to Linus for .39 and is now in the linux-next tree
as of tomorrow.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] olpc_dcon: revert strtoul change
  2011-02-04 23:44   ` Greg KH
@ 2011-02-06 22:38     ` Andres Salomon
  2011-02-06 23:05       ` Chris Ball
  0 siblings, 1 reply; 5+ messages in thread
From: Andres Salomon @ 2011-02-06 22:38 UTC (permalink / raw)
  To: Greg KH; +Cc: Marek Belisko, cjb, jon.nettleton, devel, linux-kernel

On Fri, 4 Feb 2011 15:44:43 -0800
Greg KH <gregkh@suse.de> wrote:

> On Fri, Feb 04, 2011 at 03:23:41PM -0800, Andres Salomon wrote:
> > No opinions on this patch (there are some things I'd do differently,
> > but overall it looks fine).  I'd just like to ensure that if it's
> > merged, it gets into Linus's tree quickly so that the DCON reworking
> > that I'm planning to do doesn't get sidetracked by conflicts.
> 
> It is planned to go to Linus for .39 and is now in the linux-next tree
> as of tomorrow.
> 
> thanks,
> 
> greg k-h


Ugh, this actually causes build warnings and causes XOs to fail to
boot.  Seems like the strict_strtoul change broke things; this patch
backs that out.  We can fix it properly later.
Greg, can you please apply?



From: Andres Salomon <dilinger@queued.net>

The s/simple_strtoul/strict_strtoul/ from commit e107e6eb added a build
warning, as well as an oops.  This reverts that change.

Signed-off-by: Andres Salomon <dilinger@queued.net>
---
 drivers/staging/olpc_dcon/olpc_dcon.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c b/drivers/staging/olpc_dcon/olpc_dcon.c
index b19cd34..d6ad5d7 100644
--- a/drivers/staging/olpc_dcon/olpc_dcon.c
+++ b/drivers/staging/olpc_dcon/olpc_dcon.c
@@ -525,7 +525,7 @@ static int _strtoul(const char *buf, int len, unsigned int *val)
 {
 
 	char *endp;
-	unsigned int output = strict_strtoul(buf, &endp, 0);
+	unsigned int output = simple_strtoul(buf, &endp, 0);
 	int size = endp - buf;
 
 	if (*endp && isspace(*endp))
-- 
1.7.2.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] olpc_dcon: revert strtoul change
  2011-02-06 22:38     ` [PATCH] olpc_dcon: revert strtoul change Andres Salomon
@ 2011-02-06 23:05       ` Chris Ball
  0 siblings, 0 replies; 5+ messages in thread
From: Chris Ball @ 2011-02-06 23:05 UTC (permalink / raw)
  To: Andres Salomon; +Cc: Greg KH, Marek Belisko, jon.nettleton, devel, linux-kernel

Hi,

On Sun, Feb 06, 2011 at 02:38:16PM -0800, Andres Salomon wrote:
> The s/simple_strtoul/strict_strtoul/ from commit e107e6eb added a build
> warning, as well as an oops.  This reverts that change.
> 
> Signed-off-by: Andres Salomon <dilinger@queued.net>
> ---
>  drivers/staging/olpc_dcon/olpc_dcon.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c b/drivers/staging/olpc_dcon/olpc_dcon.c
> index b19cd34..d6ad5d7 100644
> --- a/drivers/staging/olpc_dcon/olpc_dcon.c
> +++ b/drivers/staging/olpc_dcon/olpc_dcon.c
> @@ -525,7 +525,7 @@ static int _strtoul(const char *buf, int len, unsigned int *val)
>  {
>  
>  	char *endp;
> -	unsigned int output = strict_strtoul(buf, &endp, 0);
> +	unsigned int output = simple_strtoul(buf, &endp, 0);
>  	int size = endp - buf;
>  
>  	if (*endp && isspace(*endp))

Yes, different prototypes:

  unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
vs.
  int strict_strtoul(const char *cp, unsigned int base, unsigned long *res)

So, you'd need something like:

unsigned int output;
int ret = strict_strtoul(buf, 0, &output);
if (ret < 0)
	return ret;

-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-02-06 23:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-03 15:22 [PATCH] staging: olpc_dcon: checkpatch.pl fixes for olpc_dcon.c file Marek Belisko
2011-02-04 23:23 ` Andres Salomon
2011-02-04 23:44   ` Greg KH
2011-02-06 22:38     ` [PATCH] olpc_dcon: revert strtoul change Andres Salomon
2011-02-06 23:05       ` Chris Ball

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.