From: Masakazu Mokuno <mokuno@sm.sony.co.jp> Date: Thu, 7 Feb 2008 10:57:41 +0000 (+0900) Subject: PS3: gelic: Fix the wrong dev_id passed X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b94e1d47684b0bee6088d848e29154697ea4c4bd;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git PS3: gelic: Fix the wrong dev_id passed The device id for lv1_net_set_interrupt_status_indicator() is wrong. This path would be invoked only in the case of an initialization failure. Signed-off-by: Masakazu Mokuno <mokuno@sm.sony.co.jp> Signed-off-by: Jeff Garzik <jeff@garzik.org> --- diff --git a/drivers/net/ps3_gelic_net.c b/drivers/net/ps3_gelic_net.c index 055af081e027..f6fb556a0f59 100644 --- a/drivers/net/ps3_gelic_net.c +++ b/drivers/net/ps3_gelic_net.c @@ -1512,7 +1512,7 @@ static int ps3_gelic_driver_probe (struct ps3_system_bus_device *dev) fail_setup_netdev: lv1_net_set_interrupt_status_indicator(bus_id(card), - bus_id(card), + dev_id(card), 0 , 0); fail_status_indicator: ps3_dma_region_free(dev->d_region);