diff options
author | Nishanth Aravamudan <[email protected]> | 2011-05-11 11:07:51 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <[email protected]> | 2011-05-19 17:25:27 +1000 |
commit | 23a6c484047bb8ac50e6d5bb718f8d178a4bf32e (patch) | |
tree | bc3742c6fe443359947a20e337b5b47c038ef01f | |
parent | 4c8440666b995f20604852b35dcfdbcc1d5931f1 (diff) |
powerpc/pseries/iommu: Use correct return type in dupe_ddw_if_already_created
Otherwise we get silent truncations.
Signed-off-by: Nishanth Aravamudan <[email protected]>
Cc: Anton Blanchard <[email protected]>
Cc: Milton Miller <[email protected]>
Cc: [email protected]
Signed-off-by: Benjamin Herrenschmidt <[email protected]>
-rw-r--r-- | arch/powerpc/platforms/pseries/iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index 48eec3b87026..44d47ac552a9 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c @@ -693,7 +693,7 @@ static void remove_ddw(struct device_node *np) } -static int dupe_ddw_if_already_created(struct pci_dev *dev, struct device_node *pdn) +static u64 dupe_ddw_if_already_created(struct pci_dev *dev, struct device_node *pdn) { struct device_node *dn; struct pci_dn *pcidn; |