diff options
author | Daniel J Blueman <daniel.blueman@gmail.com> | 2010-09-22 17:05:35 (GMT) |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-09-24 00:13:44 (GMT) |
commit | 201ba4c43214c6c386cff66b33efb612b6260ba2 (patch) | |
tree | a05eeb5983a5d0574916476645f1793f8750d82a /drivers | |
parent | 4417d7f60218d838158f1f85eab5e9ca8d1aa92e (diff) | |
download | linux-fsl-qoriq-201ba4c43214c6c386cff66b33efb612b6260ba2.tar.xz |
vgaarb: trivial fix
Correct function being needlessly visible outside compilation unit
when the only users are internal.
Signed-off-by: Daniel J Blueman <daniel.blueman@gmail.com>
Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/vga/vgaarb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c index b87569e..f366f96 100644 --- a/drivers/gpu/vga/vgaarb.c +++ b/drivers/gpu/vga/vgaarb.c @@ -598,7 +598,7 @@ static inline void vga_update_device_decodes(struct vga_device *vgadev, pr_debug("vgaarb: decoding count now is: %d\n", vga_decode_count); } -void __vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes, bool userspace) +static void __vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes, bool userspace) { struct vga_device *vgadev; unsigned long flags; |