diff options
author | Russell King - ARM Linux <linux@arm.linux.org.uk> | 2011-01-03 22:35:08 +0000 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-01-04 19:16:11 -0800 |
commit | f96ca9ec27159c1c8718aa8d0ed03051cd12e884 (patch) | |
tree | 38ef312ac8654ab5cf2c19ed258836e1153a6bab /drivers/dma/amba-pl08x.c | |
parent | b58b6b5bedf4d5da7a0cb2dce3b42d010c3aef03 (diff) | |
download | talos-op-linux-f96ca9ec27159c1c8718aa8d0ed03051cd12e884.tar.gz talos-op-linux-f96ca9ec27159c1c8718aa8d0ed03051cd12e884.zip |
ARM: PL08x: constify vendor data pointers
We should never modify the vendor data structure so make it const.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/amba-pl08x.c')
-rw-r--r-- | drivers/dma/amba-pl08x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c index 74b35910f295..707fa081c9fa 100644 --- a/drivers/dma/amba-pl08x.c +++ b/drivers/dma/amba-pl08x.c @@ -132,7 +132,7 @@ struct pl08x_driver_data { struct dma_device memcpy; void __iomem *base; struct amba_device *adev; - struct vendor_data *vd; + const struct vendor_data *vd; struct pl08x_platform_data *pd; struct pl08x_phy_chan *phy_chans; struct dma_pool *pool; @@ -1891,7 +1891,7 @@ static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x) static int pl08x_probe(struct amba_device *adev, struct amba_id *id) { struct pl08x_driver_data *pl08x; - struct vendor_data *vd = id->data; + const struct vendor_data *vd = id->data; int ret = 0; int i; |