diff options
author | Kyle McMartin <kyle@mako.i.cabal.ca> | 2007-02-27 02:29:26 (GMT) |
---|---|---|
committer | Kyle McMartin <kyle@mako.i.cabal.ca> | 2007-02-27 02:29:26 (GMT) |
commit | fb55a0debee81280684b68713024d0c5e62e8aa5 (patch) | |
tree | ca3bc830cbddf68287d1727e340cb24c54a75f1f /drivers/char/agp | |
parent | b2a8289a611af409e5621df27227dc3f55ba358b (diff) | |
download | linux-fb55a0debee81280684b68713024d0c5e62e8aa5.tar.xz |
[PARISC] parisc-agp: Fix thinko const-ifying
Can't really blame davej for mucking this up... static-ify
it while we're at it, which would have prevented this...
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'drivers/char/agp')
-rw-r--r-- | drivers/char/agp/parisc-agp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/parisc-agp.c b/drivers/char/agp/parisc-agp.c index 3c8f3d6..3d83b46 100644 --- a/drivers/char/agp/parisc-agp.c +++ b/drivers/char/agp/parisc-agp.c @@ -210,7 +210,7 @@ parisc_agp_enable(struct agp_bridge_data *bridge, u32 mode) agp_device_command(command, (mode & AGP8X_MODE) != 0); } -struct const agp_bridge_driver parisc_agp_driver = { +static const struct agp_bridge_driver parisc_agp_driver = { .owner = THIS_MODULE, .size_type = FIXED_APER_SIZE, .configure = parisc_agp_configure, |