summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJohannes Stezenbach <devnull@localhost>2004-01-06 12:10:11 +0000
committerJohannes Stezenbach <devnull@localhost>2004-01-06 12:10:11 +0000
commit075d0f13c5e9a3ef7a7240273092bc9798fb426d (patch)
tree7540e5c5db5fbe33fd5e945ae5c75fce9ec049a1 /linux
parent40bde0c39cea6b6c6f43b4e63ae30ea5e6608d63 (diff)
downloadmediapointer-dvb-s2-075d0f13c5e9a3ef7a7240273092bc9798fb426d.tar.gz
mediapointer-dvb-s2-075d0f13c5e9a3ef7a7240273092bc9798fb426d.tar.bz2
avoid warnings: jiffies is unsigned long, not u32
Diffstat (limited to 'linux')
-rw-r--r--linux/drivers/media/dvb/ttpci/av7110_hw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/dvb/ttpci/av7110_hw.c b/linux/drivers/media/dvb/ttpci/av7110_hw.c
index 80386683e..028607312 100644
--- a/linux/drivers/media/dvb/ttpci/av7110_hw.c
+++ b/linux/drivers/media/dvb/ttpci/av7110_hw.c
@@ -288,7 +288,7 @@ int bootarm(struct av7110 *av7110)
int OutCommand(struct av7110 *av7110, u16* buf, int length)
{
int i;
- u32 start;
+ unsigned long start;
#ifdef COM_DEBUG
u32 stat;
#endif
@@ -433,7 +433,7 @@ int CommandRequest(struct av7110 *av7110, u16 *Buff, int length, u16 *buf, int n
{
int err;
s16 i;
- u32 start;
+ unsigned long start;
#ifdef COM_DEBUG
u32 stat;
#endif
@@ -619,7 +619,7 @@ static inline int SetFont(struct av7110 *av7110, u8 windownr, u8 fontsize,
static int FlushText(struct av7110 *av7110)
{
- u32 start;
+ unsigned long start;
if (down_interruptible(&av7110->dcomlock))
return -ERESTARTSYS;
@@ -640,7 +640,7 @@ static int FlushText(struct av7110 *av7110)
static int WriteText(struct av7110 *av7110, u8 win, u16 x, u16 y, u8* buf)
{
int i, ret;
- u32 start;
+ unsigned long start;
int length = strlen(buf) + 1;
u16 cbuf[5] = { (COMTYPE_OSD << 8) + DText, 3, win, x, y };