Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Aug 2015 17:01:26 +0000 (UTC)
From:      Luiz Otavio O Souza <loos@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r286846 - head/sys/modules/gpio/gpiobus
Message-ID:  <201508171701.t7HH1QPC030905@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: loos
Date: Mon Aug 17 17:01:26 2015
New Revision: 286846
URL: https://svnweb.freebsd.org/changeset/base/286846

Log:
  Fix the build of gpiobus as a module.
  
  Add the missing newbus interfaces and gpioc, which is part of basic gpiobus
  framework.
  
  Sponsored by:	Rubicon Communications (Netgate)

Modified:
  head/sys/modules/gpio/gpiobus/Makefile

Modified: head/sys/modules/gpio/gpiobus/Makefile
==============================================================================
--- head/sys/modules/gpio/gpiobus/Makefile	Mon Aug 17 16:51:37 2015	(r286845)
+++ head/sys/modules/gpio/gpiobus/Makefile	Mon Aug 17 17:01:26 2015	(r286846)
@@ -32,8 +32,9 @@
 .PATH:	${.CURDIR}/../../../dev/gpio/
 
 KMOD=	gpiobus
-SRCS=	gpiobus.c
-SRCS+=	device_if.h bus_if.h gpio_if.h gpiobus_if.h opt_platform.h
+SRCS=	gpiobus.c gpioc.c
+SRCS+=	gpio_if.c gpio_if.h gpiobus_if.c gpiobus_if.h
+SRCS+=	device_if.h bus_if.h opt_platform.h
 
 CFLAGS+=  -I. -I${.CURDIR}/../../../dev/gpio/
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508171701.t7HH1QPC030905>