summaryrefslogtreecommitdiffstats
path: root/drivers/staging/gasket/gasket.h
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2018-08-02 01:42:43 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-08-02 11:00:21 +0200
commit1c65a2e2f68eae5d73b41dee003b8135dfcf6928 (patch)
treeb4930cd778dfd6f83e5329cfc97448435b4f8797 /drivers/staging/gasket/gasket.h
parent84d979bc89e3a982940b85014aab357b25d32882 (diff)
staging: gasket: remove "reset type" param from framework
The "type of reset" parameter to the gasket device reset APIs isn't required by the only gasket device submitted upstream, apex. The framework documents the param as private to the device driver and a pass-through at the gasket layer, but the gasket core calls the device driver with a hardcoded reset type of zero, which is not documented as having a predefined meaning. In light of all this, remove the reset type parameter from the framework. Remove the reset ioctl reset type parameter, and bump the framework version number to reflect the interface change. Signed-off-by: Todd Poynor <toddpoynor@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gasket/gasket.h')
-rw-r--r--drivers/staging/gasket/gasket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/gasket/gasket.h b/drivers/staging/gasket/gasket.h
index 9f709f0c5a2b..a0f065c517a5 100644
--- a/drivers/staging/gasket/gasket.h
+++ b/drivers/staging/gasket/gasket.h
@@ -52,8 +52,8 @@ struct gasket_coherent_alloc_config_ioctl {
/* Base number for all Gasket-common IOCTLs */
#define GASKET_IOCTL_BASE 0xDC
-/* Reset the device using the specified reset type. */
-#define GASKET_IOCTL_RESET _IOW(GASKET_IOCTL_BASE, 0, unsigned long)
+/* Reset the device. */
+#define GASKET_IOCTL_RESET _IO(GASKET_IOCTL_BASE, 0)
/* Associate the specified [event]fd with the specified interrupt. */
#define GASKET_IOCTL_SET_EVENTFD \