Commit a90d9904 authored by Anders Roxell's avatar Anders Roxell Committed by Arnd Bergmann
Browse files

power: vexpress: cleanup: use builtin_platform_driver

Use the helper macro for builtin drivers taht don't do anything special
in driver init. This removes some boilerplate code.

Link: https://lore.kernel.org/r/20200527112608.3886105-3-anders.roxell@linaro.org


Signed-off-by: default avatarAnders Roxell <anders.roxell@linaro.org>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 73174acc
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -146,9 +146,4 @@ static struct platform_driver vexpress_reset_driver = {
		.suppress_bind_attrs = true,
	},
};

static int __init vexpress_reset_init(void)
{
	return platform_driver_register(&vexpress_reset_driver);
}
device_initcall(vexpress_reset_init);
builtin_platform_driver(vexpress_reset_driver);