Message ID | 002c01cfc65d$87e0d270$97a27750$%han@samsung.com (mailing list archive) |
---|---|
State | Rejected |
Headers | show |
diff --git a/drivers/spi/spi-oc-tiny.c b/drivers/spi/spi-oc-tiny.c index 8998d11c7238..baac441fa6f6 100644 --- a/drivers/spi/spi-oc-tiny.c +++ b/drivers/spi/spi-oc-tiny.c @@ -338,13 +338,11 @@ static int tiny_spi_remove(struct platform_device *pdev) return 0; } -#ifdef CONFIG_OF static const struct of_device_id tiny_spi_match[] = { { .compatible = "opencores,tiny-spi-rtlsvn2", }, {}, }; MODULE_DEVICE_TABLE(of, tiny_spi_match); -#endif /* CONFIG_OF */ static struct platform_driver tiny_spi_driver = { .probe = tiny_spi_probe,
Remove unnecessary #ifdef CONFIG_OF, because this is already handled by the of_match_ptr macro. Signed-off-by: Jingoo Han <jg1.han@samsung.com> --- drivers/spi/spi-oc-tiny.c | 2 -- 1 file changed, 2 deletions(-)