]> git.baikalelectronics.ru Git - kernel.git/commit
net: ethernet: cpsw: improve interrupt lookup logic in cpsw_probe()
authorDaniel Mack <zonque@gmail.com>
Thu, 4 Sep 2014 07:00:23 +0000 (09:00 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 6 Sep 2014 00:17:13 +0000 (17:17 -0700)
commita549edcc33e8e03fed943821a57d71ffe7564614
tree3e086c638970122c91c8c344b8c62786e5a04303
parenta05333ddfc132d95424b1f648bc549702ba27f6e
net: ethernet: cpsw: improve interrupt lookup logic in cpsw_probe()

Simplify the interrupt resource lookup code in cpsw_probe() by the
following:

 * Only look at the first member of the resource. As the driver only
   works for DT-enabled platforms anyway, a resource of type
   IORESOURCE_IRQ will only contain one single entry
   (res->start == res->end), so there is no need for the iteration.

 * Add a bounds check to avoid overflows if we are passed more than
   ARRAY_SIZE(priv->irqs_table) resources.

 * Assign 'ret' with the return value of devm_request_irq() so that
   cpsw_probe() returns the appropriate error code.

 * If devm_request_irq() fails, report the error code in the log
   message.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Mugunthan V N <mugunthanvnm@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw.c