diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2008-04-10 16:44:30 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-15 21:21:25 +1000 |
commit | f9a5e6a27d2aa1b37758abb031f37615ac367cca (patch) | |
tree | 7902aefe6388625fcedca42484fa59345e95e793 /arch/powerpc/platforms/iseries/vpd_areas.h | |
parent | 30ff2e87ed55e83b4eb436f5f14a7e49ff81ad99 (diff) | |
download | kernel_samsung_smdk4412-f9a5e6a27d2aa1b37758abb031f37615ac367cca.tar.gz kernel_samsung_smdk4412-f9a5e6a27d2aa1b37758abb031f37615ac367cca.tar.bz2 kernel_samsung_smdk4412-f9a5e6a27d2aa1b37758abb031f37615ac367cca.zip |
[POWERPC] iSeries: Localise and constify some iSeries data
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/iseries/vpd_areas.h')
-rw-r--r-- | arch/powerpc/platforms/iseries/vpd_areas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/iseries/vpd_areas.h b/arch/powerpc/platforms/iseries/vpd_areas.h index 601e6dd860e..feb001f3a5f 100644 --- a/arch/powerpc/platforms/iseries/vpd_areas.h +++ b/arch/powerpc/platforms/iseries/vpd_areas.h @@ -80,9 +80,9 @@ struct ItVpdAreas { u32 xPlicDmaLens[ItDmaMaxEntries];// Array of DMA lengths 080-0A7 u32 xPlicDmaToks[ItDmaMaxEntries];// Array of DMA tokens 0A8-0CF u32 xSlicVpdLens[ItVpdMaxEntries];// Array of VPD lengths 0D0-12F - void *xSlicVpdAdrs[ItVpdMaxEntries];// Array of VPD buffers 130-1EF + const void *xSlicVpdAdrs[ItVpdMaxEntries];// Array of VPD buffers 130-1EF }; -extern struct ItVpdAreas itVpdAreas; +extern const struct ItVpdAreas itVpdAreas; #endif /* _ISERIES_VPD_AREAS_H */ |