From 49640386b3156a292dca25a6f8d15f06b2e7b564 Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Sat, 17 Aug 2019 19:06:05 +0000 Subject: [PATCH] Revert r351130 This driver should use the syscon handle exposed by the parent simple-mfd one. --- sys/arm/mv/a37x0_gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arm/mv/a37x0_gpio.c b/sys/arm/mv/a37x0_gpio.c index 15cb72c5887..9a69c9b864d 100644 --- a/sys/arm/mv/a37x0_gpio.c +++ b/sys/arm/mv/a37x0_gpio.c @@ -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 } }; -- 2.45.0