svn commit: r286847 - head/sys/dev/gpio
Luiz Otavio O Souza
loos at FreeBSD.org
Mon Aug 17 17:09:58 UTC 2015
Author: loos
Date: Mon Aug 17 17:09:57 2015
New Revision: 286847
URL: https://svnweb.freebsd.org/changeset/base/286847
Log:
gpioled(4) depends on gpiobus.
This fixes the loading of gpioled as a module.
Sponsored by: Rubicon Communications (Netgate)
Modified:
head/sys/dev/gpio/gpioled.c
Modified: head/sys/dev/gpio/gpioled.c
==============================================================================
--- head/sys/dev/gpio/gpioled.c Mon Aug 17 17:01:26 2015 (r286846)
+++ head/sys/dev/gpio/gpioled.c Mon Aug 17 17:09:57 2015 (r286847)
@@ -255,3 +255,4 @@ static driver_t gpioled_driver = {
};
DRIVER_MODULE(gpioled, gpiobus, gpioled_driver, gpioled_devclass, 0, 0);
+MODULE_DEPEND(gpioled, gpiobus, 1, 1, 1);
More information about the svn-src-head
mailing list