diff options
| author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-03-29 00:47:23 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:54:22 -0700 | 
| commit | 8271f04242af8ddf8390f289cd6ef78fb3e3c6d9 (patch) | |
| tree | 5e4cd7a1889931f6cea5f994c6cb06c9bf120a4c /arch/sparc/kernel/ebus.c | |
| parent | 644923d4a5f117d437aefd47688d1141cc8361ed (diff) | |
[SPARC]: constify of_get_property return: arch/sparc
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/ebus.c')
| -rw-r--r-- | arch/sparc/kernel/ebus.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/arch/sparc/kernel/ebus.c b/arch/sparc/kernel/ebus.c index ba58c3a061fd..7724e2067159 100644 --- a/arch/sparc/kernel/ebus.c +++ b/arch/sparc/kernel/ebus.c @@ -86,8 +86,8 @@ int __init ebus_blacklist_irq(char *name)  void __init fill_ebus_child(struct device_node *dp,  			    struct linux_ebus_child *dev)  { -	int *regs; -	int *irqs; +	const int *regs; +	const int *irqs;  	int i, len;  	dev->prom_node = dp; @@ -146,9 +146,9 @@ void __init fill_ebus_child(struct device_node *dp,  void __init fill_ebus_device(struct device_node *dp, struct linux_ebus_device *dev)  { -	struct linux_prom_registers *regs; +	const struct linux_prom_registers *regs;  	struct linux_ebus_child *child; -	int *irqs; +	const int *irqs;  	int i, n, len;  	unsigned long baseaddr; @@ -269,7 +269,7 @@ void __init fill_ebus_device(struct device_node *dp, struct linux_ebus_device *d  void __init ebus_init(void)  { -	struct linux_prom_pci_registers *regs; +	const struct linux_prom_pci_registers *regs;  	struct linux_pbm_info *pbm;  	struct linux_ebus_device *dev;  	struct linux_ebus *ebus; | 
