Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9547acce authored by Sachin Kamat's avatar Sachin Kamat Committed by Mark Brown
Browse files

spi: spi-oc-tiny: Use of_match_ptr() macro



This eliminates having an #ifdef returning NULL for the case
when OF is disabled.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Acked-by: default avatarThomas Chou <thomas@wytron.com.tw>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent ff23fa3b
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -393,8 +393,6 @@ static const struct of_device_id tiny_spi_match[] = {
	{},
};
MODULE_DEVICE_TABLE(of, tiny_spi_match);
#else /* CONFIG_OF */
#define tiny_spi_match NULL
#endif /* CONFIG_OF */

static struct platform_driver tiny_spi_driver = {
@@ -404,7 +402,7 @@ static struct platform_driver tiny_spi_driver = {
		.name = DRV_NAME,
		.owner = THIS_MODULE,
		.pm = NULL,
		.of_match_table = tiny_spi_match,
		.of_match_table = of_match_ptr(tiny_spi_match),
	},
};
module_platform_driver(tiny_spi_driver);