svn commit: r299858 - head/sys/arm/nvidia
Michal Meloun
mmel at FreeBSD.org
Sun May 15 15:31:46 UTC 2016
Author: mmel
Date: Sun May 15 15:31:44 2016
New Revision: 299858
URL: https://svnweb.freebsd.org/changeset/base/299858
Log:
TEGRA: Also attach gpioc to tegra_gpio driver. Forgotten in r299854.
Modified:
head/sys/arm/nvidia/tegra_gpio.c
Modified: head/sys/arm/nvidia/tegra_gpio.c
==============================================================================
--- head/sys/arm/nvidia/tegra_gpio.c Sun May 15 15:26:19 2016 (r299857)
+++ head/sys/arm/nvidia/tegra_gpio.c Sun May 15 15:31:44 2016 (r299858)
@@ -895,4 +895,7 @@ EARLY_DRIVER_MODULE(tegra_gpio, simplebu
extern devclass_t ofwgpiobus_devclass;
extern driver_t ofw_gpiobus_driver;
EARLY_DRIVER_MODULE(ofw_gpiobus, tegra_gpio, ofw_gpiobus_driver,
-ofwgpiobus_devclass, 0, 0, BUS_PASS_BUS);
+ ofwgpiobus_devclass, 0, 0, BUS_PASS_BUS);
+extern devclass_t gpioc_devclass;
+extern driver_t gpioc_driver;
+DRIVER_MODULE(gpioc, tegra_gpio, gpioc_driver, gpioc_devclass, 0, 0);
More information about the svn-src-head
mailing list