mirror of https://gitee.com/openkylin/linux.git
ds1wm: report bus reset error
The patch replaces dev_dbg() by dev_err(), so the user could actually see the error, instead of wondering why w1 doesn't work. The root cause of the bus reset error isn't yet debugged though, but this sometimes happens on iPaq H5555. And while I'm at it, some cosmetic cleanups also made (few lines were using spaces instead of tabs). Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com> Acked-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
fbc357df2e
commit
daa49ff50a
|
@ -150,7 +150,7 @@ static int ds1wm_reset(struct ds1wm_data *ds1wm_data)
|
|||
timeleft = wait_for_completion_timeout(&reset_done, DS1WM_TIMEOUT);
|
||||
ds1wm_data->reset_complete = NULL;
|
||||
if (!timeleft) {
|
||||
dev_dbg(&ds1wm_data->pdev->dev, "reset failed\n");
|
||||
dev_err(&ds1wm_data->pdev->dev, "reset failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue