commit | 115357e9774ff8d70a84d3c31f271209913637b0 | [log] [tgz] |
---|---|---|
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | Tue Jul 02 17:46:01 2013 +0200 |
committer | Vinod Koul <vinod.koul@intel.com> | Sun Aug 25 11:54:35 2013 +0530 |
tree | 5e294c58ac1fd42db8e380ef6229bd490699d2ad | |
parent | a28a94e84bca8ba7db66bcc0db1bea51840b08b2 [diff] |
DMA: shdma: switch all __iomem pointers to void In the shdma driver __iomem pointers are used to point to hardware registers. Using typed pointers like "u32 __iomem *" in this case is inconvenient, because then offsets, added to such pointers, have to be devided by sizeof(u32) or similar. Switch the driver to use void pointers, which avoids this clumsiness. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>