net: encx24j600: Fix SPI id table definition
authorJavier Martinez Canillas <javier@osg.samsung.com>
Fri, 30 Oct 2015 12:49:17 +0000 (13:49 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 2 Nov 2015 20:28:56 +0000 (15:28 -0500)
commitd0cb48cd19ce1e249cd350aa67fbf63560292266
treeea4d18959cfd57ddb405f3b3fa4ee804a8024cd7
parent322cf7e3a4e89236ae386cb5668ae0d787d21136
net: encx24j600: Fix SPI id table definition

A driver's SPI id table is expected to be an array of struct spi_device_id
that ends with a zero-initialized sentinel entry. But this driver defines
the table as a single struct spi_device_id and sets .id_table to a pointer
to this struct.

But spi_match_id() has a loop that iterates while the struct spi_device_id
.name[0] is not NULL, so not having a sentinel can cause a NULL pointer
deference error.

This patch defines the SPI id table correctly as all other SPI drivers do.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/microchip/encx24j600.c