summaryrefslogtreecommitdiffstats
path: root/drivers/misc/genwqe/card_base.h
diff options
context:
space:
mode:
authorGuilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>2017-12-14 12:34:06 -0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-19 10:54:44 +0100
commit658a494a5b793ab19575f6825cd3f01ce662b0c6 (patch)
treec58c6d2489d5bc02ef580c29f89c96c6660f5110 /drivers/misc/genwqe/card_base.h
parent9d14e766183efb44579e9f14ed6e3417c784b798 (diff)
downloadlinux-stable-658a494a5b793ab19575f6825cd3f01ce662b0c6.tar.gz
linux-stable-658a494a5b793ab19575f6825cd3f01ce662b0c6.tar.bz2
linux-stable-658a494a5b793ab19575f6825cd3f01ce662b0c6.zip
genwqe: Remove unused parameter in some functions
This is a clean-up patch, no functional changes intended. It removes the unused parameter of type "struct ddcb_requ*" from the functions genwqe_user_vmap() and genwqe_user_vunmap(). Signed-off-by: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/genwqe/card_base.h')
-rw-r--r--drivers/misc/genwqe/card_base.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/misc/genwqe/card_base.h b/drivers/misc/genwqe/card_base.h
index a9314b06b97b..1c3967f10f55 100644
--- a/drivers/misc/genwqe/card_base.h
+++ b/drivers/misc/genwqe/card_base.h
@@ -490,11 +490,9 @@ int genwqe_read_app_id(struct genwqe_dev *cd, char *app_name, int len);
/* Memory allocation/deallocation; dma address handling */
int genwqe_user_vmap(struct genwqe_dev *cd, struct dma_mapping *m,
- void *uaddr, unsigned long size,
- struct ddcb_requ *req);
+ void *uaddr, unsigned long size);
-int genwqe_user_vunmap(struct genwqe_dev *cd, struct dma_mapping *m,
- struct ddcb_requ *req);
+int genwqe_user_vunmap(struct genwqe_dev *cd, struct dma_mapping *m);
static inline bool dma_mapping_used(struct dma_mapping *m)
{