Commit 5619965f authored by Olof Johansson's avatar Olof Johansson

[POWERPC] pasemi: Fix module information for gpio-mdio

Fix up the module information for gpio-mdio, it wouldn't load
because of lacking license, and wouldn't auto-load because of missing
MODULE_DEVICE_TABLE.
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 32e2b55e
...@@ -318,6 +318,7 @@ static struct of_device_id gpio_mdio_match[] = ...@@ -318,6 +318,7 @@ static struct of_device_id gpio_mdio_match[] =
}, },
{}, {},
}; };
MODULE_DEVICE_TABLE(of, gpio_mdio_match);
static struct of_platform_driver gpio_mdio_driver = static struct of_platform_driver gpio_mdio_driver =
{ {
...@@ -356,3 +357,7 @@ void gpio_mdio_exit(void) ...@@ -356,3 +357,7 @@ void gpio_mdio_exit(void)
iounmap(gpio_regs); iounmap(gpio_regs);
} }
module_exit(gpio_mdio_exit); module_exit(gpio_mdio_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Olof Johansson <olof@lixom.net>");
MODULE_DESCRIPTION("Driver for MDIO over GPIO on PA Semi PWRficient-based boards");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment