fix this warning:
authorStefan Reinauer <stepan@coresystems.de>
Sat, 4 Apr 2009 22:27:10 +0000 (22:27 +0000)
committerStefan Reinauer <stepan@openbios.org>
Sat, 4 Apr 2009 22:27:10 +0000 (22:27 +0000)
coreboot-v2-4067//src/stream/ide_stream.c: In function 'stream_ide_read':
coreboot-v2-4067//src/stream/ide_stream.c:47: warning: declaration of 'offset' shadows a global declaration
coreboot-v2-4067//src/stream/ide_stream.c:13: warning: shadowed declaration is here

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4071 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/stream/ide_stream.c

index 0dd9a912585fed457cb99bbe41f02636665441be..832f503a956d2e4eb68359f24c6f85709059958f 100644 (file)
@@ -11,6 +11,7 @@
 #endif
 
 static unsigned long offset;
+
 int stream_init(void)
 {
        int i,res;
@@ -44,7 +45,8 @@ void stream_fini(void)
 static unsigned char buffer[512];
 static unsigned int block_num = 0;
 static unsigned int first_fill = 1;
-static byte_offset_t stream_ide_read(void *vdest, byte_offset_t offset, byte_offset_t count)
+
+static byte_offset_t stream_ide_read(void *vdest, byte_offset_t offs, byte_offset_t count)
 {
        byte_offset_t bytes = 0;
        unsigned char *dest = vdest;
@@ -54,14 +56,14 @@ static byte_offset_t stream_ide_read(void *vdest, byte_offset_t offset, byte_off
                unsigned int byte_offset, len;
 
                /* The block is not cached in memory or frist time called */
-               if (block_num != offset / 512 || first_fill) {
-                       block_num  = offset / 512;
+               if (block_num != offs / 512 || first_fill) {
+                       block_num  = offs / 512;
                        printk_notice (".");
                        ide_read(IDE_BOOT_DRIVE, block_num, buffer);
                        first_fill = 0;
                }
 
-               byte_offset = offset % 512;
+               byte_offset = offs % 512;
                len = 512 - byte_offset;
                if (len > (count - bytes)) {
                        len = (count - bytes);
@@ -69,7 +71,7 @@ static byte_offset_t stream_ide_read(void *vdest, byte_offset_t offset, byte_off
 
                memcpy(dest, buffer + byte_offset, len);
 
-               offset += len;
+               offs += len;
                bytes += len;
                dest += len;