From 140b7fe4d38aa2733b28d5a370c5e5796c508c06 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Sat, 30 Jun 2018 20:14:00 +0200 Subject: [PATCH] mmc: pxamci: remove dma resources from private context These members are no longer in use, so let's remove them. Signed-off-by: Daniel Mack Acked-by: Robert Jarzmik Signed-off-by: Ulf Hansson --- drivers/mmc/host/pxamci.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/mmc/host/pxamci.c b/drivers/mmc/host/pxamci.c index f0968882dbd34..a826c0e8a096f 100644 --- a/drivers/mmc/host/pxamci.c +++ b/drivers/mmc/host/pxamci.c @@ -71,12 +71,8 @@ struct pxamci_host { struct dma_chan *dma_chan_rx; struct dma_chan *dma_chan_tx; dma_cookie_t dma_cookie; - dma_addr_t sg_dma; unsigned int dma_len; - unsigned int dma_dir; - unsigned int dma_drcmrrx; - unsigned int dma_drcmrtx; struct regulator *vcc; };