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

[PATCH] drivers_net_hamradio_scc.c save_flags unsigned check

  The function save_flags must use unsigned long instead long (signed)
  This trivial patch solves the problem
parent 8d37d851
...@@ -2129,7 +2129,7 @@ static int __init scc_init_driver (void) ...@@ -2129,7 +2129,7 @@ static int __init scc_init_driver (void)
static void __exit scc_cleanup_driver(void) static void __exit scc_cleanup_driver(void)
{ {
long flags; unsigned long flags;
io_port ctrl; io_port ctrl;
int k; int k;
struct scc_channel *scc; struct scc_channel *scc;
......
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