svn commit: r351178 - head/sys/arm/mv

Emmanuel Vadot manu at FreeBSD.org
Sat Aug 17 19:06:06 UTC 2019


Author: manu
Date: Sat Aug 17 19:06:05 2019
New Revision: 351178
URL: https://svnweb.freebsd.org/changeset/base/351178

Log:
  Revert r351130
  
  This driver should use the syscon handle exposed by the parent simple-mfd one.

Modified:
  head/sys/arm/mv/a37x0_gpio.c

Modified: head/sys/arm/mv/a37x0_gpio.c
==============================================================================
--- head/sys/arm/mv/a37x0_gpio.c	Sat Aug 17 19:05:11 2019	(r351177)
+++ head/sys/arm/mv/a37x0_gpio.c	Sat Aug 17 19:06:05 2019	(r351178)
@@ -48,8 +48,8 @@ __FBSDID("$FreeBSD$");
 #include "gpio_if.h"
 
 static struct resource_spec a37x0_gpio_res_spec[] = {
-	{ SYS_RES_MEMORY, 0, RF_ACTIVE | RF_SHAREABLE },	/* Pinctl / GPIO */
-	{ SYS_RES_MEMORY, 1, RF_ACTIVE | RF_SHAREABLE },	/* Interrupts control */
+	{ SYS_RES_MEMORY, 0, RF_ACTIVE },	/* Pinctl / GPIO */
+	{ SYS_RES_MEMORY, 1, RF_ACTIVE },	/* Interrupts control */
 	{ -1, 0, 0 }
 };
 


More information about the svn-src-all mailing list