mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
[POWERPC] tmp_atmel: Constify & voidify get_property()
Now that get_property() returns a void *, there's no need to cast its return value. Also, treat the return value as const, so we can constify get_property later. tpm_atmel changes Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
abddd185a0
commit
5c339e96a3
@ -37,7 +37,7 @@ static void __iomem * atmel_get_base_addr(unsigned long *base, int *region_size)
|
||||
{
|
||||
struct device_node *dn;
|
||||
unsigned long address, size;
|
||||
unsigned int *reg;
|
||||
const unsigned int *reg;
|
||||
int reglen;
|
||||
int naddrc;
|
||||
int nsizec;
|
||||
@ -52,7 +52,7 @@ static void __iomem * atmel_get_base_addr(unsigned long *base, int *region_size)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
reg = (unsigned int *) get_property(dn, "reg", ®len);
|
||||
reg = get_property(dn, "reg", ®len);
|
||||
naddrc = prom_n_addr_cells(dn);
|
||||
nsizec = prom_n_size_cells(dn);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user