diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 01:06:16 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 09:09:00 -0800 |
commit | df87ac96140ef216e31b859868743d43732686de (patch) | |
tree | 0f6d9e458c7794aaa34587c1082c8f32fd008b6a /drivers/char/scc.h | |
parent | aa7e02fe3786b524dde18d24f0c5a718182c72a2 (diff) | |
download | linux-df87ac96140ef216e31b859868743d43732686de.tar.gz linux-df87ac96140ef216e31b859868743d43732686de.tar.bz2 linux-df87ac96140ef216e31b859868743d43732686de.zip |
[PATCH] m68k: static vs. extern in scc.h
extern declaration before the static one
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/scc.h')
-rw-r--r-- | drivers/char/scc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/scc.h b/drivers/char/scc.h index 51810f72f1a9..93998f5baff5 100644 --- a/drivers/char/scc.h +++ b/drivers/char/scc.h @@ -399,7 +399,7 @@ struct scc_port { __asm__ __volatile__ ( "tstb %0" : : "g" (*_scc_del) : "cc" );\ } while (0) -extern unsigned char scc_shadow[2][16]; +static unsigned char scc_shadow[2][16]; /* The following functions should relax the somehow complicated * register access of the SCC. _SCCwrite() stores all written values |