All of lore.kernel.org
 help / color / mirror / Atom feed
* re: iio: imu: mpu6050: add mpu6500 register settings
@ 2016-03-02 18:18 Dan Carpenter
  2016-03-02 18:21 ` Dan Carpenter
  0 siblings, 1 reply; 5+ messages in thread
From: Dan Carpenter @ 2016-03-02 18:18 UTC (permalink / raw)
  To: matt.ranostay; +Cc: linux-iio

Hello Matt Ranostay,

This is a semi-automatic email about new static checker warnings.

The patch 33da559f861b: "iio: imu: mpu6050: add mpu6500 register 
settings" from Feb 22, 2016, leads to the following Smatch complaint:

drivers/iio/imu/inv_mpu6050/inv_mpu_spi.c:58 inv_mpu_probe()
	 error: we previously assumed 'id' could be null (see line 48)

drivers/iio/imu/inv_mpu6050/inv_mpu_spi.c
    47		const struct spi_device_id *id = spi_get_device_id(spi);
    48		const char *name = id ? id->name : NULL;
                                   ^^
Existing code assumed id could be NULL.

    49	
    50		regmap = devm_regmap_init_spi(spi, &inv_mpu_regmap_config);
    51		if (IS_ERR(regmap)) {
    52			dev_err(&spi->dev, "Failed to register spi regmap %d\n",
    53				(int)PTR_ERR(regmap));
    54			return PTR_ERR(regmap);
    55		}
    56	
    57		return inv_mpu_core_probe(regmap, spi->irq, name,
    58					  inv_mpu_i2c_disable, id->driver_data);
                                                               ^^^^^^^^^^^^^^^
The patch adds an unchecked dereference.

    59	}
    60	

regards,
dan carpenter

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

end of thread, other threads:[~2016-03-07  8:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-02 18:18 iio: imu: mpu6050: add mpu6500 register settings Dan Carpenter
2016-03-02 18:21 ` Dan Carpenter
2016-03-02 22:04   ` Matt Ranostay
2016-03-05 17:50     ` Jonathan Cameron
2016-03-07  8:19       ` Adriana Reus

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.