diff mbox

backlight/ld9040.c: testing the wrong variable in ld9040_probe()

Message ID 20110329031909.GC9856@bicker (mailing list archive)
State Not Applicable
Headers show

Commit Message

Dan Carpenter March 29, 2011, 3:19 a.m. UTC
None
diff mbox

Patch

diff --git a/drivers/video/backlight/ld9040.c b/drivers/video/backlight/ld9040.c
index 7281b25..9e81d69 100644
--- a/drivers/video/backlight/ld9040.c
+++ b/drivers/video/backlight/ld9040.c
@@ -701,8 +701,8 @@  static int ld9040_probe(struct spi_device *spi)
 
 	bd = backlight_device_register("ld9040-bl", &spi->dev,
 		lcd, &ld9040_backlight_ops, NULL);
-	if (IS_ERR(ld)) {
-		ret = PTR_ERR(ld);
+	if (IS_ERR(bd)) {
+		ret = PTR_ERR(bd);
 		goto out_free_lcd;
 	}