[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20091001200208.2907b8ff@leela>
Date: Thu, 1 Oct 2009 20:02:08 +0200
From: Michal Schmidt <mschmidt@...hat.com>
To: Stephen Hemminger <shemminger@...tta.com>
Cc: David Miller <davem@...emloft.net>, netdev@...r.kernel.org
Subject: Re: [PATCH] skge: use unique IRQ name
Dne Thu, 1 Oct 2009 09:50:32 -0700 Stephen Hemminger napsal:
> err = -ENOMEM;
> - hw = kzalloc(sizeof(*hw), GFP_KERNEL);
> + /* space for skge@pci:0000:04:00.0 */
> + irq_name_len = strlen(DRV_NAME) +
> strlen(dev_name(&pdev->dev)) + 6;
You replaced "dev_name(&pdev->dev)" with "pci_name(pdev)" below.
That's nice, so we should replace it here too for consistency.
> + hw = kzalloc(sizeof(*hw) + irq_name_len, GFP_KERNEL);
> if (!hw) {
> dev_err(&pdev->dev, "cannot allocate hardware
> struct\n"); goto err_out_free_regions;
> }
> + sprintf(hw->irq_name, DRV_NAME "@pci:%s", pci_name(pdev));
Michal
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists