mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
net/macmace: Drop redundant MACH_IS_MAC test
The MACH_IS_MAC test is redundant here because the platform device won't get registered unless MACH_IS_MAC. Adopt module_platform_driver() convention. Cc: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
66e19689f5
commit
1e9b9a8bbd
@ -767,18 +767,4 @@ static struct platform_driver mac_mace_driver = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init mac_mace_init_module(void)
|
||||
{
|
||||
if (!MACH_IS_MAC)
|
||||
return -ENODEV;
|
||||
|
||||
return platform_driver_register(&mac_mace_driver);
|
||||
}
|
||||
|
||||
static void __exit mac_mace_cleanup_module(void)
|
||||
{
|
||||
platform_driver_unregister(&mac_mace_driver);
|
||||
}
|
||||
|
||||
module_init(mac_mace_init_module);
|
||||
module_exit(mac_mace_cleanup_module);
|
||||
module_platform_driver(mac_mace_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user