Date: Sun, 29 Oct 2006 23:09:11 +0100 (CET) From: Stefan Richter Subject: ieee1394: nodemgr: take it easy if bus_rescan_devices fails This happens. No need to log a BUG trace. Signed-off-by: Stefan Richter --- Index: linux-2.6.19-rc3/drivers/ieee1394/nodemgr.c =================================================================== --- linux-2.6.19-rc3.orig/drivers/ieee1394/nodemgr.c 2006-10-29 22:40:10.000000000 +0100 +++ linux-2.6.19-rc3/drivers/ieee1394/nodemgr.c 2006-10-29 22:56:57.000000000 +0100 @@ -1599,9 +1599,8 @@ static void nodemgr_node_probe(struct ho * just removed. */ if (generation == get_hpsb_generation(host)) - WARN_ON(bus_rescan_devices(&ieee1394_bus_type)); - - return; + if (bus_rescan_devices(&ieee1394_bus_type)) + HPSB_DEBUG("bus_rescan_devices had an error"); } static int nodemgr_send_resume_packet(struct hpsb_host *host)