From d29bf66764b3d10b31d8171f2130f4d7262ca5f9 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 19 Jan 2021 20:29:09 -0500 Subject: [PATCH] oops --- gpio.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gpio.d b/gpio.d index 1b64f00..c993795 100644 --- a/gpio.d +++ b/gpio.d @@ -243,7 +243,7 @@ extern(C) { at the end of the structure on 64-bit architectures. */ struct gpioline_info_changed { - struct gpioline_info info; /// updated line information + gpioline_info info; /// updated line information ulong timestamp; /// estimate of time of status change occurrence, in nanoseconds and GPIOLINE_CHANGED_CONFIG uint event_type; /// one of GPIOLINE_CHANGED_REQUESTED, GPIOLINE_CHANGED_RELEASED uint[5] padding; /* for future use */ @@ -254,9 +254,9 @@ extern(C) { enum GPIOHANDLE_REQUEST_ACTIVE_LOW = (1 << 2); /// ditto enum GPIOHANDLE_REQUEST_OPEN_DRAIN = (1 << 3); /// ditto enum GPIOHANDLE_REQUEST_OPEN_SOURCE = (1 << 4); /// ditto - enum GPIOHANDLE_REQUEST_BIAS_PULL_UP = (1 << 5) /// ditto - enum GPIOHANDLE_REQUEST_BIAS_PULL_DOWN = (1 << 6) /// ditto - enum GPIOHANDLE_REQUEST_BIAS_DISABLE = (1 << 7) /// ditto + enum GPIOHANDLE_REQUEST_BIAS_PULL_UP = (1 << 5); /// ditto + enum GPIOHANDLE_REQUEST_BIAS_PULL_DOWN = (1 << 6); /// ditto + enum GPIOHANDLE_REQUEST_BIAS_DISABLE = (1 << 7); /// ditto /**