diff options
author | Arnd Bergmann <[email protected]> | 2012-08-04 11:18:20 +0000 |
---|---|---|
committer | Arnd Bergmann <[email protected]> | 2012-08-10 12:27:47 +0200 |
commit | 4732cc636075ff1a0219bf933d8c23d1a99f41ed (patch) | |
tree | 9381dc3ab288d617b1e29577e078ba5fde3db894 | |
parent | d680e2c11eb0ddd21ba438b3a537e2eb093ff86f (diff) |
spi/s3c64xx: improve error handling
When a device tree definition os an s3c64xx SPI master is missing
a "controller-data" subnode, the newly added s3c64xx_get_slave_ctrldata
function might use uninitialized memory in place of that node,
which was correctly reported by gcc.
Without this patch, building s3c6400_defconfig results in:
drivers/spi/spi-s3c64xx.c: In function 's3c64xx_get_slave_ctrldata.isra.25':
drivers/spi/spi-s3c64xx.c:841:5: warning: 'data_np' may be used uninitialized in this function [-Wuninitialized]
Signed-off-by: Arnd Bergmann <[email protected]>
Acked-by: Thomas Abraham <[email protected]>
Acked-by: Kukjin Kim <[email protected]>
Cc: Jaswinder Singh <[email protected]>
Cc: Grant Likely <[email protected]>
-rw-r--r-- | drivers/spi/spi-s3c64xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index 646a7657fe62..cfa2c35dfeed 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -826,7 +826,7 @@ static struct s3c64xx_spi_csinfo *s3c64xx_get_slave_ctrldata( struct spi_device *spi) { struct s3c64xx_spi_csinfo *cs; - struct device_node *slave_np, *data_np; + struct device_node *slave_np, *data_np = NULL; u32 fb_delay = 0; slave_np = spi->dev.of_node; |