Skip to content

Commit

Permalink
[IRDA]: Replace hard-coded dev_self[] array sizes with ARRAY_SIZE()
Browse files Browse the repository at this point in the history
Several IR drivers used "for (i = 0; i < 4; i++)" to walk their
dev_self[] table.  Better to use ARRAY_SIZE().  And fix ali-ircc so it
won't run off the end if we find too many adapters.

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Bjorn Helgaas authored and David S. Miller committed Sep 22, 2006
1 parent 9a673e5 commit 9c3bd68
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
8 changes: 7 additions & 1 deletion drivers/net/irda/ali-ircc.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static void __exit ali_ircc_cleanup(void)

IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __FUNCTION__);

for (i=0; i < 4; i++) {
for (i=0; i < ARRAY_SIZE(dev_self); i++) {
if (dev_self[i])
ali_ircc_close(dev_self[i]);
}
Expand All @@ -273,6 +273,12 @@ static int ali_ircc_open(int i, chipio_t *info)
int err;

IRDA_DEBUG(2, "%s(), ---------------- Start ----------------\n", __FUNCTION__);

if (i >= ARRAY_SIZE(dev_self)) {
IRDA_ERROR("%s(), maximum number of supported chips reached!\n",
__FUNCTION__);
return -ENOMEM;
}

/* Set FIR FIFO and DMA Threshold */
if ((ali_ircc_setup(info)) == -1)
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/irda/irport.c
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ static int __init irport_init(void)
{
int i;

for (i=0; (io[i] < 2000) && (i < 4); i++) {
for (i=0; (io[i] < 2000) && (i < ARRAY_SIZE(dev_self)); i++) {
if (irport_open(i, io[i], irq[i]) != NULL)
return 0;
}
Expand All @@ -1112,7 +1112,7 @@ static void __exit irport_cleanup(void)

IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);

for (i=0; i < 4; i++) {
for (i=0; i < ARRAY_SIZE(dev_self); i++) {
if (dev_self[i])
irport_close(dev_self[i]);
}
Expand Down
5 changes: 4 additions & 1 deletion drivers/net/irda/via-ircc.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ static void via_ircc_clean(void)

IRDA_DEBUG(3, "%s()\n", __FUNCTION__);

for (i=0; i < 4; i++) {
for (i=0; i < ARRAY_SIZE(dev_self); i++) {
if (dev_self[i])
via_ircc_close(dev_self[i]);
}
Expand Down Expand Up @@ -327,6 +327,9 @@ static __devinit int via_ircc_open(int i, chipio_t * info, unsigned int id)

IRDA_DEBUG(3, "%s()\n", __FUNCTION__);

if (i >= ARRAY_SIZE(dev_self))
return -ENOMEM;

/* Allocate new instance of the driver */
dev = alloc_irdadev(sizeof(struct via_ircc_cb));
if (dev == NULL)
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/irda/w83977af_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ static int __init w83977af_init(void)

IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );

for (i=0; (io[i] < 2000) && (i < 4); i++) {
for (i=0; (io[i] < 2000) && (i < ARRAY_SIZE(dev_self)); i++) {
if (w83977af_open(i, io[i], irq[i], dma[i]) == 0)
return 0;
}
Expand All @@ -136,7 +136,7 @@ static void __exit w83977af_cleanup(void)

IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );

for (i=0; i < 4; i++) {
for (i=0; i < ARRAY_SIZE(dev_self); i++) {
if (dev_self[i])
w83977af_close(dev_self[i]);
}
Expand Down

0 comments on commit 9c3bd68

Please sign in to comment.