[PATCH v9 1/1] PRUSS UIO driver support
From: arnd@arndb.de (Arnd Bergmann)
Date: 2011-03-03 18:16:08
Also in:
lkml
From: arnd@arndb.de (Arnd Bergmann)
Date: 2011-03-03 18:16:08
Also in:
lkml
On Thursday 03 March 2011 19:07:57 Pratheesh Gangadhar wrote:
+struct uio_pruss_dev {
+ struct uio_info *info;
+ struct clk *pruss_clk;
+ dma_addr_t sram_paddr;
+ dma_addr_t ddr_paddr;
+ void __iomem *prussio_vaddr;
+ void *sram_vaddr;
+ void *ddr_vaddr;
+ unsigned int hostirq_start;
+ unsigned int pintc_base;
+};
+
+struct pruss_priv {
+ struct uio_pruss_dev *pupdev;
+};I cannot see the point of struct pruss_priv, I think it would be better to just merge the two data structures into one. Everything else looks good to me now. Arnd