提交 5c339e96 编写于 作者: J Jeremy Kerr 提交者: Paul Mackerras

[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: NJeremy Kerr <jk@ozlabs.org>
Signed-off-by: NPaul Mackerras <paulus@samba.org>
上级 abddd185
...@@ -37,7 +37,7 @@ static void __iomem * atmel_get_base_addr(unsigned long *base, int *region_size) ...@@ -37,7 +37,7 @@ static void __iomem * atmel_get_base_addr(unsigned long *base, int *region_size)
{ {
struct device_node *dn; struct device_node *dn;
unsigned long address, size; unsigned long address, size;
unsigned int *reg; const unsigned int *reg;
int reglen; int reglen;
int naddrc; int naddrc;
int nsizec; int nsizec;
...@@ -52,7 +52,7 @@ static void __iomem * atmel_get_base_addr(unsigned long *base, int *region_size) ...@@ -52,7 +52,7 @@ static void __iomem * atmel_get_base_addr(unsigned long *base, int *region_size)
return NULL; return NULL;
} }
reg = (unsigned int *) get_property(dn, "reg", &reglen); reg = get_property(dn, "reg", &reglen);
naddrc = prom_n_addr_cells(dn); naddrc = prom_n_addr_cells(dn);
nsizec = prom_n_size_cells(dn); nsizec = prom_n_size_cells(dn);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册