powerpc/chrp: Store the intended structure
Normally the values in the resource field and the argument to ARRAY_SIZE in the num_resources are the same. In this case, the value in the reousrce field is the same as the one in the previous platform_device structure, and appears to be a copy-paste error. Replace the value in the resource field with the argument to the local call to ARRAY_SIZE. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
6c80d3164e
commit
36992606ee
|
@ -63,7 +63,7 @@ static struct platform_device mv643xx_eth_mvmdio_device = {
|
|||
.name = "orion-mdio",
|
||||
.id = -1,
|
||||
.num_resources = ARRAY_SIZE(mv643xx_eth_mvmdio_resources),
|
||||
.resource = mv643xx_eth_shared_resources,
|
||||
.resource = mv643xx_eth_mvmdio_resources,
|
||||
};
|
||||
|
||||
static struct resource mv643xx_eth_port1_resources[] = {
|
||||
|
|
Loading…
Reference in New Issue