[PATCH v3 4/4] memory: emif: add device tree support to emif driver
Greg Kroah-Hartman
gregkh at linuxfoundation.org
Mon Jun 25 14:28:30 EDT 2012
On Tue, Jun 19, 2012 at 02:33:11PM +0530, Shilimkar, Santosh wrote:
> @@ -1644,11 +1923,23 @@ static void __attribute__((unused))
> freq_post_notify_handling(void)
> spin_unlock_irqrestore(&emif_lock, irq_state);
> }
>
> +#if defined(CONFIG_OF)
> +static const struct of_device_id emif_of_match[] = {
> + { .compatible = "ti,emif-4d" },
> + { .compatible = "ti,emif-4d5" },
> + {},
> +};
> +MODULE_DEVICE_TABLE(of, emif_of_match);
> +#endif
> +
> static struct platform_driver emif_driver = {
> .remove = __exit_p(emif_remove),
> .shutdown = emif_shutdown,
> .driver = {
> .name = "emif",
> +#if defined(CONFIG_OF)
> + .of_match_table = of_match_ptr(emif_of_match),
> +#endif
Are these two still #if defined needed?
Also, what about the IS_DEFINED macro?
And, if you resend, please resend the whole series, I don't have the old
ones around anymore.
thanks,
greg k-h
More information about the linux-arm-kernel
mailing list