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

[PATCH] drivers_net_de600.c save_flags unsigned check

  The function save_flags must use unsigned long instead long (signed)
  This trivial patch solves the problem
parent bfa61ad0
......@@ -717,7 +717,7 @@ static int
adapter_init(struct net_device *dev)
{
int i;
long flags;
unsigned long flags;
save_flags(flags);
cli();
......
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