Re: [patch] 2.6.9-rc1-mm2: char/pcxx.c doesn't compile

From: Jesper Juhl
Date: Tue Aug 31 2004 - 15:23:40 EST


On Tue, 31 Aug 2004, Adrian Bunk wrote:

> static void pcxxpoll(unsigned long dummy)
> {
> @@ -1995,6 +1982,7 @@
> volatile struct board_chan *bc;
> unsigned long flags;
> int mflag = 0;
> + int mstat;
>
> if(ch)
> bc = ch->brdchan;
> @@ -2069,6 +2057,7 @@
> pcxxparam(tty,ch);
> memoff(ch);
> restore_flags(flags);
> + return 0;
> }

since pcxxpoll is declared with a void return, return 0; here seems
pointless. A simple return; or just falling off the end of the function
should be fine as far as I can see.


--
Jesper Juhl <juhl-lkml@xxxxxx>


-
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/