[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20070316184955.71ff1e3b.randy.dunlap@oracle.com>
Date: Fri, 16 Mar 2007 18:49:55 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: isdn4linux@...tserv.isdn4linux.de,
lkml <linux-kernel@...r.kernel.org>
Cc: kkeil@...e.de, kai.germaschewski@....de
Subject: is SpellCaster ISDN still used?
There is an API argument mismatch in it:
drivers/isdn/sc/init.c:281: warning: assignment from incompatible pointer type
interface->writebuf_skb = sndpkt;
where:
int sndpkt(int devId, int channel, struct sk_buff *data)
{
...
}
should look like this:
/*
* Send data using sk_buff's
* Parameters:
* int driverId
* int local channel-number (0...)
* int Flag: Need ACK for this packet.
* struct sk_buff *skb Data to send
*/
int (*writebuf_skb) (int, int, int, struct sk_buff *);
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists