summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFancy Fang <B47543@freescale.com>2013-12-11 18:48:44 +0800
committerFancy Fang <B47543@freescale.com>2013-12-13 17:10:53 +0800
commit726e53847e1de4f270303ac7775b307a38f1083c (patch)
tree8547487ba46df43034bce2f3fb9d4972ba58f574 /include
parent436d6e483bd19bfc3c7bf03b63bc9f9f5cf077a9 (diff)
ENGR00291731 PXP: move pxp_irq_info definition from PXP dma to PXP device
struct pxp_irq_info is only used by PXP device driver, so it is unreasonable to define it in pxp_dma.h which will be included by EPDC, V4L2 PXP and PXP device driver. Signed-off-by: Fancy Fang <B47543@freescale.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/pxp_dma.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/pxp_dma.h b/include/linux/pxp_dma.h
index 613d89f143f9..0961753726aa 100644
--- a/include/linux/pxp_dma.h
+++ b/include/linux/pxp_dma.h
@@ -55,13 +55,6 @@ struct pxp_channel {
char eof_name[16]; /* EOF IRQ name for request_irq() */
};
-struct pxp_irq_info {
- wait_queue_head_t waitq;
- int irq_pending;
- int hist_status;
- spinlock_t lock;
-};
-
#define to_tx_desc(tx) container_of(tx, struct pxp_tx_desc, txd)
#define to_pxp_channel(d) container_of(d, struct pxp_channel, dma_chan)