Merge remote-tracking branch 'spi/topic/core' into spi-next
authorMark Brown <broonie@linaro.org>
Mon, 4 Aug 2014 16:21:03 +0000 (17:21 +0100)
committerMark Brown <broonie@linaro.org>
Mon, 4 Aug 2014 16:21:03 +0000 (17:21 +0100)
drivers/spi/spi.c

index e691e281e3a2561f1bb759df3aae13528ba082d2..e6f076d5ffd5bb65c4c4fcc38efce1342ab5adec 100644 (file)
@@ -345,14 +345,12 @@ static DEFINE_MUTEX(board_lock);
 struct spi_device *spi_alloc_device(struct spi_master *master)
 {
        struct spi_device       *spi;
-       struct device           *dev = master->dev.parent;
 
        if (!spi_master_get(master))
                return NULL;
 
        spi = kzalloc(sizeof(*spi), GFP_KERNEL);
        if (!spi) {
-               dev_err(dev, "cannot alloc spi_device\n");
                spi_master_put(master);
                return NULL;
        }
This page took 0.029921 seconds and 5 git commands to generate.