1
0
Fork 0

memory: atmel-sdramc: use builtin_platform_driver to simplify the code

Use the builtin_platform_driver() macro to make the code simpler.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
hifive-unleashed-5.1
Wei Yongjun 2016-09-16 13:05:10 +00:00 committed by Alexandre Belloni
parent ecc2d430fa
commit af69240060
1 changed files with 1 additions and 5 deletions

View File

@ -85,8 +85,4 @@ static struct platform_driver atmel_ramc_driver = {
},
};
static int __init atmel_ramc_init(void)
{
return platform_driver_register(&atmel_ramc_driver);
}
device_initcall(atmel_ramc_init);
builtin_platform_driver(atmel_ramc_driver);