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

Commit a814a14e authored by Axel Lin's avatar Axel Lin Committed by Ulf Hansson
Browse files

mmc: cavium-octeon: Convert to use module_platform_driver



Get rid of boilerplate code by using module_platform_driver macro.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarJan Glauber <jglauber@cavium.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent b773b3bf
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -342,18 +342,7 @@ static struct platform_driver octeon_mmc_driver = {
	},
};

static int __init octeon_mmc_init(void)
{
	return platform_driver_register(&octeon_mmc_driver);
}

static void __exit octeon_mmc_cleanup(void)
{
	platform_driver_unregister(&octeon_mmc_driver);
}

module_init(octeon_mmc_init);
module_exit(octeon_mmc_cleanup);
module_platform_driver(octeon_mmc_driver);

MODULE_AUTHOR("Cavium Inc. <support@cavium.com>");
MODULE_DESCRIPTION("Low-level driver for Cavium OCTEON MMC/SSD card");