diff options
| author | Andrew Morton <akpm@digeo.com> | 2003-02-10 00:29:58 -0800 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2003-02-10 00:29:58 -0800 |
| commit | e3b4a0e0cccb57221190df0e05072a4ab89c482d (patch) | |
| tree | 527450c4c0c7433cc8691c6ef977143cff0ae29f | |
| parent | 2cece07e7485cb500aa8e11b8c0b88945049e4a3 (diff) | |
[PATCH] de4x5 compile fix
Move the definition of version[] down to where __initdata has been defined.
| -rw-r--r-- | drivers/net/tulip/de4x5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c index 9ffd558ac7f0..d11d1c838a84 100644 --- a/drivers/net/tulip/de4x5.c +++ b/drivers/net/tulip/de4x5.c @@ -440,8 +440,6 @@ ========================================================================= */ -static char version[] __initdata = "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.com\n"; - #include <linux/config.h> #include <linux/module.h> #include <linux/kernel.h> @@ -477,6 +475,8 @@ static char version[] __initdata = "de4x5.c:V0.546 2001/02/22 davies@maniac.ultr #include "de4x5.h" +static char version[] __initdata = "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.com\n"; + #define c_char const char #define TWIDDLE(a) (u_short)le16_to_cpu(get_unaligned((u_short *)(a))) |
