diff mbox series

[3/7] gpio: mockup: set the mockup flag in struct gpio_chip

Message ID 1485358461-24070-4-git-send-email-bgolaszewski@baylibre.com
State New
Headers show
Series gpio: mockup: extensions for testing purposes | expand

Commit Message

Bartosz Golaszewski Jan. 25, 2017, 3:34 p.m. UTC
gpio-mockup creates dummy devices, so indicate it.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>

---
 drivers/gpio/gpio-mockup.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.9.3
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-mockup.c b/drivers/gpio/gpio-mockup.c
index 82a9efd..cf8b1b2 100644
--- a/drivers/gpio/gpio-mockup.c
+++ b/drivers/gpio/gpio-mockup.c
@@ -101,6 +101,7 @@  static int mockup_gpio_add(struct device *dev,
 	cntr->gc.direction_output = mockup_gpio_dirout;
 	cntr->gc.direction_input = mockup_gpio_dirin;
 	cntr->gc.get_direction = mockup_gpio_get_direction;
+	cntr->gc.mockup = true;
 	cntr->stats = devm_kzalloc(dev, sizeof(*cntr->stats) * cntr->gc.ngpio,
 				   GFP_KERNEL);
 	if (!cntr->stats) {