[PATCH 3/9] Minor DVB Skystar2 updates

From: Michael Hunold
Date: Mon Feb 23 2004 - 16:12:03 EST


[DVB] - skystar2: renamed two functions, deleted spurious spaces.
diff -uNrwB --new-file xx-linux-2.6.3/drivers/media/dvb/b2c2/skystar2.c linux-2.6.3.p/drivers/media/dvb/b2c2/skystar2.c
--- xx-linux-2.6.3/drivers/media/dvb/b2c2/skystar2.c 2004-01-09 09:22:39.000000000 +0100
+++ linux-2.6.3.p/drivers/media/dvb/b2c2/skystar2.c 2004-02-02 19:28:29.000000000 +0100
@@ -500,7 +501,7 @@
}
}

-static void sram_writeChunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len)
+static void sram_write_chunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len)
{
u32 bank;

@@ -520,7 +521,7 @@
flex_sram_write(adapter, bank, addr & 0x7fff, buf, len);
}

-static void sram_readChunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len)
+static void sram_read_chunk(struct adapter *adapter, u32 addr, u8 *buf, u16 len)
{
u32 bank;

@@ -554,7 +555,7 @@
length = (((addr >> 0x0f) + 1) << 0x0f) - addr;
}

- sram_readChunk(adapter, addr, buf, length);
+ sram_read_chunk(adapter, addr, buf, length);

addr = addr + length;
buf = buf + length;
@@ -576,7 +577,7 @@
length = (((addr >> 0x0f) + 1) << 0x0f) - addr;
}

- sram_writeChunk(adapter, addr, buf, length);
+ sram_write_chunk(adapter, addr, buf, length);

addr = addr + length;
buf = buf + length;


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/