diff options
author | Olaf Hering <olh@suse.de> | 2005-11-09 14:54:43 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-09 19:26:01 -0500 |
commit | c44bc68dc0d2ca95e48b7242fef48200cd03352d (patch) | |
tree | db7b2a86677c8584ec6aae773c98f771895ff9ab /arch/ppc64/boot/addRamDisk.c | |
parent | 681c774d0fb59c9b9525c2879d1cfae29c2f7866 (diff) |
[PATCH] ppc64 boot: fix compile warnings
Fix a few compile warnings
arch/ppc64/boot/addRamDisk.c:166: warning: int format, long unsigned int arg (arg 2)
arch/ppc64/boot/addRamDisk.c:170: warning: int format, long unsigned int arg (arg 2)
arch/ppc64/boot/addRamDisk.c:265: warning: unsigned int format, long unsigned int arg (arg 2)
arch/ppc64/boot/addRamDisk.c:302: warning: unsigned int format, long unsigned int arg (arg 3)
Signed-off-by: Olaf Hering <olh@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc64/boot/addRamDisk.c')
-rw-r--r-- | arch/ppc64/boot/addRamDisk.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/ppc64/boot/addRamDisk.c b/arch/ppc64/boot/addRamDisk.c index d99c04a38e46..c02a99952be7 100644 --- a/arch/ppc64/boot/addRamDisk.c +++ b/arch/ppc64/boot/addRamDisk.c | |||
@@ -163,11 +163,11 @@ int main(int argc, char **argv) | |||
163 | fseek(inputVmlinux, 0, SEEK_END); | 163 | fseek(inputVmlinux, 0, SEEK_END); |
164 | kernelLen = ftell(inputVmlinux); | 164 | kernelLen = ftell(inputVmlinux); |
165 | fseek(inputVmlinux, 0, SEEK_SET); | 165 | fseek(inputVmlinux, 0, SEEK_SET); |
166 | printf("kernel file size = %d\n", kernelLen); | 166 | printf("kernel file size = %lu\n", kernelLen); |
167 | 167 | ||
168 | actualKernelLen = kernelLen - ElfHeaderSize; | 168 | actualKernelLen = kernelLen - ElfHeaderSize; |
169 | 169 | ||
170 | printf("actual kernel length (minus ELF header) = %d\n", actualKernelLen); | 170 | printf("actual kernel length (minus ELF header) = %lu\n", actualKernelLen); |
171 | 171 | ||
172 | round = actualKernelLen % 4096; | 172 | round = actualKernelLen % 4096; |
173 | roundedKernelLen = actualKernelLen; | 173 | roundedKernelLen = actualKernelLen; |
@@ -262,7 +262,7 @@ int main(int argc, char **argv) | |||
262 | death("Could not read hvReleaseData pointer\n", outputVmlinux, out_name); | 262 | death("Could not read hvReleaseData pointer\n", outputVmlinux, out_name); |
263 | } | 263 | } |
264 | hvReleaseData = ntohl(hvReleaseData); /* Convert to native int */ | 264 | hvReleaseData = ntohl(hvReleaseData); /* Convert to native int */ |
265 | printf("hvReleaseData is at %08x\n", hvReleaseData); | 265 | printf("hvReleaseData is at %08lx\n", hvReleaseData); |
266 | 266 | ||
267 | /* fseek to the hvReleaseData */ | 267 | /* fseek to the hvReleaseData */ |
268 | fseek(outputVmlinux, ElfHeaderSize + hvReleaseData, SEEK_SET); | 268 | fseek(outputVmlinux, ElfHeaderSize + hvReleaseData, SEEK_SET); |
@@ -298,7 +298,7 @@ int main(int argc, char **argv) | |||
298 | if (fwrite(inbuf, 0x18, 1, outputVmlinux) != 1) { | 298 | if (fwrite(inbuf, 0x18, 1, outputVmlinux) != 1) { |
299 | death("Could not write naca\n", outputVmlinux, out_name); | 299 | death("Could not write naca\n", outputVmlinux, out_name); |
300 | } | 300 | } |
301 | printf("Ram Disk of 0x%lx pages is attached to the kernel at offset 0x%08x\n", | 301 | printf("Ram Disk of 0x%lx pages is attached to the kernel at offset 0x%08lx\n", |
302 | ramPages, ramStartOffs); | 302 | ramPages, ramStartOffs); |
303 | 303 | ||
304 | /* Done */ | 304 | /* Done */ |