diff options
author | Christian Gromm <christian.gromm@microchip.com> | 2017-11-21 15:04:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-11-27 09:20:35 +0100 |
commit | 9abfc8bb795b8d3c1323288f978c3718de843d64 (patch) | |
tree | 52d9e19589b74b3f9d1a7823cb5d1e7fd6b1a69b /drivers | |
parent | 845101bed867868f3c2e475341b9cd7cb1a86ab3 (diff) |
staging: most: core: remove context pointer
This patch removes the unused context pointer that was meant to provide the
opportunity to store context information.
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/most/core.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/most/core.h b/drivers/staging/most/core.h index 764f013d0db4..718dab8b4b18 100644 --- a/drivers/staging/most/core.h +++ b/drivers/staging/most/core.h @@ -272,7 +272,6 @@ struct most_aim { int channel_idx); int (*rx_completion)(struct mbo *mbo); int (*tx_completion)(struct most_interface *iface, int channel_idx); - void *context; }; #define to_most_aim(d) container_of(d, struct most_aim, dev) |