diff options
| author | Randy Dunlap <rddunlap@osdl.org> | 2005-02-27 18:33:43 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-02-27 18:33:43 -0800 |
| commit | a847f56464f9737ddb11a7e41f63b142b237b776 (patch) | |
| tree | ac710b55445748856ec8f024df07dd7a9ef0641e | |
| parent | c6f68779bb225de52c1ceed39de0bc5aa1e33123 (diff) | |
[PATCH] rrunner: fix section references
rrunner: references __initdata in a __devinit function; data should
be __devinitdata;
Error: ./drivers/net/rrunner.o .text refers to 00000000000002b2 R_X86_64_32S .init.data
Signed-off-by: Randy Dunlap <rddunlap@osdl.org>
Signed-off-by: Jes Sorensen <jes@wildopensource.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | drivers/net/rrunner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/rrunner.c b/drivers/net/rrunner.c index 4108b287bb62..12a86f96d973 100644 --- a/drivers/net/rrunner.c +++ b/drivers/net/rrunner.c @@ -62,7 +62,7 @@ MODULE_AUTHOR("Jes Sorensen <jes@wildopensource.com>"); MODULE_DESCRIPTION("Essential RoadRunner HIPPI driver"); MODULE_LICENSE("GPL"); -static char version[] __initdata = "rrunner.c: v0.50 11/11/2002 Jes Sorensen (jes@wildopensource.com)\n"; +static char version[] __devinitdata = "rrunner.c: v0.50 11/11/2002 Jes Sorensen (jes@wildopensource.com)\n"; /* * Implementation notes: |
