staging: brcm80211: remove unneccessary packets funtion prototype

The prototype for function pktsegcnt in bmcutils.h is not defined
nor used anywhere in the driver so it can be removed.

Reviewed-by: Brett Rudley <brudley@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Arend van Spriel 2010-11-23 14:06:22 +01:00 committed by Greg Kroah-Hartman
parent 7c8bc0147f
commit b6eb5c0f71

View file

@ -149,10 +149,9 @@
/* externs */
/* packet */
extern uint pktfrombuf(struct osl_info *osh, void *p, uint offset,
int len, unsigned char *buf);
extern uint pktsegcnt(struct osl_info *osh, void *p);
extern uint pkttotlen(struct osl_info *osh, void *p);
extern uint pktfrombuf(struct osl_info *osh, struct sk_buff *p,
uint offset, int len, unsigned char *buf);
extern uint pkttotlen(struct osl_info *osh, struct sk_buff *p);
/* ethernet address */
extern int bcm_ether_atoe(char *p, struct ether_addr *ea);