From: Christian Gromm Date: Tue, 21 Nov 2017 14:04:58 +0000 (+0100) Subject: staging: most: core: remove context pointer X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=9abfc8bb795b8d3c1323288f978c3718de843d64;p=openwrt%2Fstaging%2Fblogic.git 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 Signed-off-by: Greg Kroah-Hartman --- 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)