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

Commit 19d69b86 authored by Sachin Kamat's avatar Sachin Kamat Committed by David Woodhouse
Browse files

mtd: dataflash: 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>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent dcf8abfc
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -105,8 +105,6 @@ static const struct of_device_id dataflash_dt_ids[] = {
	{ .compatible = "atmel,dataflash", },
	{ /* sentinel */ }
};
#else
#define dataflash_dt_ids NULL
#endif

/* ......................................................................... */
@@ -914,7 +912,7 @@ static struct spi_driver dataflash_driver = {
	.driver = {
		.name		= "mtd_dataflash",
		.owner		= THIS_MODULE,
		.of_match_table = dataflash_dt_ids,
		.of_match_table = of_match_ptr(dataflash_dt_ids),
	},

	.probe		= dataflash_probe,