Commit 6fc4adca6ce3e1d57a42707019dddcb883578a91

Authored by Simon Marchi
Committed by David S. Miller
1 parent a652208e0b

tilegx: request_irq with a non-null device name

This patch simply makes the tilegx net driver call request_irq with a
non-null name. It makes the output in /proc/interrupts more obvious, but
also helps tools that don't expect to find null there.

Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca>
Acked-by: Chris Metcalf <cmetcalf@tilera.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/net/ethernet/tile/tilegx.c
... ... @@ -917,7 +917,7 @@
917 917 ingress_irq = rc;
918 918 tile_irq_activate(ingress_irq, TILE_IRQ_PERCPU);
919 919 rc = request_irq(ingress_irq, tile_net_handle_ingress_irq,
920   - 0, NULL, NULL);
  920 + 0, "tile_net", NULL);
921 921 if (rc != 0) {
922 922 netdev_err(dev, "request_irq failed: %d\n", rc);
923 923 destroy_irq(ingress_irq);