Commit 8cd672dc authored by Celso González's avatar Celso González Committed by Linus Torvalds

[PATCH] drivers_net_pcmcia_aironet4500_cs.c save_flags unsigned check

  The function save_flags must use an unsigned long parameter instead a
  long (signed) one
  This trivial patch solves the problem
parent f5b07cc7
......@@ -347,7 +347,7 @@ static dev_link_t *awc_attach(void)
static void awc_detach(dev_link_t *link)
{
dev_link_t **linkp;
long flags;
unsigned long flags;
int i=0;
DEBUG(0, "awc_detach(0x%p)\n", link);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment