Browse Source

[media] drivers: media: i2c : s5c73m3: Replace dev_err with pr_err

Replace dev_err statement with pr_err to fix null dereference.

Found by Coccinelle.

Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Tapasweni Pathak 10 years ago
parent
commit
48205533ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/media/i2c/s5c73m3/s5c73m3-spi.c

+ 1 - 1
drivers/media/i2c/s5c73m3/s5c73m3-spi.c

@@ -52,7 +52,7 @@ static int spi_xmit(struct spi_device *spi_dev, void *addr, const int len,
 		xfer.rx_buf = addr;
 		xfer.rx_buf = addr;
 
 
 	if (spi_dev == NULL) {
 	if (spi_dev == NULL) {
-		dev_err(&spi_dev->dev, "SPI device is uninitialized\n");
+		pr_err("SPI device is uninitialized\n");
 		return -ENODEV;
 		return -ENODEV;
 	}
 	}