diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-04-10 22:55:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-11 06:18:53 -0700 |
commit | 9ec85c03d045d5ec24d6f15649a68646aefe88ba (patch) | |
tree | b2f5e983ac0bf99a7e9c0a57444cd38c9b7568e6 /drivers/video/aty/atyfb_base.c | |
parent | 358dd55aa3a77fbbae482b83d96733d9ad441d05 (diff) | |
download | talos-op-linux-9ec85c03d045d5ec24d6f15649a68646aefe88ba.tar.gz talos-op-linux-9ec85c03d045d5ec24d6f15649a68646aefe88ba.zip |
[PATCH] video/aty/atyfb_base.c: fix an off-by-one error
Fix an obvious of-by-one error spotted by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/aty/atyfb_base.c')
-rw-r--r-- | drivers/video/aty/atyfb_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/aty/atyfb_base.c b/drivers/video/aty/atyfb_base.c index b39e72d5413b..d9d7d3c4cae2 100644 --- a/drivers/video/aty/atyfb_base.c +++ b/drivers/video/aty/atyfb_base.c @@ -3400,7 +3400,7 @@ static int __devinit atyfb_pci_probe(struct pci_dev *pdev, const struct pci_devi struct atyfb_par *par; int i, rc = -ENOMEM; - for (i = ARRAY_SIZE(aty_chips); i >= 0; i--) + for (i = ARRAY_SIZE(aty_chips) - 1; i >= 0; i--) if (pdev->device == aty_chips[i].pci_id) break; |