CONFIG_HOTPLUG is going away as an option so __devinitconst is no longer needed.
Signed-off-by: Bill Pemberton <[email protected]> Cc: Julian Andres Klode <[email protected]> Cc: Marc Dietrich <[email protected]> Cc: [email protected] Cc: [email protected] --- drivers/staging/nvec/nvec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c index 56588a8..7e71d7e 100644 --- a/drivers/staging/nvec/nvec.c +++ b/drivers/staging/nvec/nvec.c @@ -900,7 +900,7 @@ static int nvec_resume(struct device *dev) static const SIMPLE_DEV_PM_OPS(nvec_pm_ops, nvec_suspend, nvec_resume); /* Match table for of_platform binding */ -static const struct of_device_id nvidia_nvec_of_match[] __devinitconst = { +static const struct of_device_id nvidia_nvec_of_match[] = { { .compatible = "nvidia,nvec", }, {}, }; -- 1.8.0 _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
