From: Shimoda, Yoshihiro Date: Mon, 3 Feb 2014 01:43:46 +0000 (+0900) Subject: spi: rspi: fix build error when CONFIG_OF is not set X-Git-Tag: next-20140306~35^2~1^3~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=64b67defe4eb4de2d2df8acd5584a9e28fa727d3;p=karo-tx-linux.git spi: rspi: fix build error when CONFIG_OF is not set This patch fixes an issue that the following build error happens when the CONFIG_OF is not set: drivers/spi/spi-rspi.c: In function 'rspi_probe': drivers/spi/spi-rspi.c:1203:26: error: 'rspi_of_match' undeclared (first use in this function) Signed-off-by: Yoshihiro Shimoda Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-rspi.c b/drivers/spi/spi-rspi.c index 34ad4bca8a41..e5cfc3d77b8c 100644 --- a/drivers/spi/spi-rspi.c +++ b/drivers/spi/spi-rspi.c @@ -1164,6 +1164,7 @@ static int rspi_parse_dt(struct device *dev, struct spi_master *master) return 0; } #else +#define rspi_of_match NULL static inline int rspi_parse_dt(struct device *dev, struct spi_master *master) { return -EINVAL;