diff options
author | Paul Mackerras <paulus@samba.org> | 2006-03-28 21:24:50 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-28 21:24:50 -0500 |
commit | bac30d1a78d0f11c613968fc8b351a91ed465386 (patch) | |
tree | e52f3c876522a2f6047a6ec1c27df2e8a79486b8 /drivers/video/aty/aty128fb.c | |
parent | e8222502ee6157e2713da9e0792c21f4ad458d50 (diff) | |
parent | ca9ba4471c1203bb6e759b76e83167fec54fe590 (diff) |
Merge ../linux-2.6
Diffstat (limited to 'drivers/video/aty/aty128fb.c')
-rw-r--r-- | drivers/video/aty/aty128fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/aty/aty128fb.c b/drivers/video/aty/aty128fb.c index f07be22e119d..f7bbff4ddc6a 100644 --- a/drivers/video/aty/aty128fb.c +++ b/drivers/video/aty/aty128fb.c | |||
@@ -1726,9 +1726,9 @@ static int __init aty128_init(struct pci_dev *pdev, const struct pci_device_id * | |||
1726 | strcpy(video_card, "Rage128 XX "); | 1726 | strcpy(video_card, "Rage128 XX "); |
1727 | video_card[8] = ent->device >> 8; | 1727 | video_card[8] = ent->device >> 8; |
1728 | video_card[9] = ent->device & 0xFF; | 1728 | video_card[9] = ent->device & 0xFF; |
1729 | 1729 | ||
1730 | /* range check to make sure */ | 1730 | /* range check to make sure */ |
1731 | if (ent->driver_data < (sizeof(r128_family)/sizeof(char *))) | 1731 | if (ent->driver_data < ARRAY_SIZE(r128_family)) |
1732 | strncat(video_card, r128_family[ent->driver_data], sizeof(video_card)); | 1732 | strncat(video_card, r128_family[ent->driver_data], sizeof(video_card)); |
1733 | 1733 | ||
1734 | printk(KERN_INFO "aty128fb: %s [chip rev 0x%x] ", video_card, chip_rev); | 1734 | printk(KERN_INFO "aty128fb: %s [chip rev 0x%x] ", video_card, chip_rev); |