Skip to content

Commit

Permalink
[AGPGART] Mark AMD64 aperture size structs as const
Browse files Browse the repository at this point in the history
Neither of them are ever written to.

Noted by Arjan van de Ven
Signed-off-by: Dave Jones <davej@redhat.com>
  • Loading branch information
Dave Jones committed Nov 17, 2005
1 parent 5e9ad06 commit a42ab7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/char/agp/amd64-agp.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ static void __devinit amd8151_init(struct pci_dev *pdev, struct agp_bridge_data
}


static struct aper_size_info_32 uli_sizes[7] =
static const struct aper_size_info_32 uli_sizes[7] =
{
{256, 65536, 6, 10},
{128, 32768, 5, 9},
Expand Down Expand Up @@ -470,7 +470,7 @@ static int __devinit uli_agp_init(struct pci_dev *pdev)
}


static struct aper_size_info_32 nforce3_sizes[5] =
static const struct aper_size_info_32 nforce3_sizes[5] =
{
{512, 131072, 7, 0x00000000 },
{256, 65536, 6, 0x00000008 },
Expand Down

0 comments on commit a42ab7f

Please sign in to comment.