diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-05-21 04:40:12 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-21 20:48:03 +0200 |
commit | 47ac5b6e406642801b9854179df111d1cbbb0b59 (patch) | |
tree | 4e470471aabd31a002154abe4bfdd850450ac0c7 /drivers/usb/host/fusbh200-hcd.c | |
parent | usb: fusbh200-hcd: fix error handling in fusbh200_hcd_fusbh200_probe() (diff) | |
download | linux-47ac5b6e406642801b9854179df111d1cbbb0b59.tar.xz linux-47ac5b6e406642801b9854179df111d1cbbb0b59.zip |
usb: fusbh200-hcd: convert list_for_each to entry variant
convert list_for_each() to list_for_each_entry() where
applicable.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/fusbh200-hcd.c')
-rw-r--r-- | drivers/usb/host/fusbh200-hcd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/host/fusbh200-hcd.c b/drivers/usb/host/fusbh200-hcd.c index cb1f2fa0faf7..bf2154d1fe55 100644 --- a/drivers/usb/host/fusbh200-hcd.c +++ b/drivers/usb/host/fusbh200-hcd.c @@ -427,7 +427,6 @@ static void qh_lines ( { u32 scratch; u32 hw_curr; - struct list_head *entry; struct fusbh200_qtd *td; unsigned temp; unsigned size = *sizep; @@ -464,8 +463,7 @@ static void qh_lines ( next += temp; /* hc may be modifying the list as we read it ... */ - list_for_each (entry, &qh->qtd_list) { - td = list_entry (entry, struct fusbh200_qtd, qtd_list); + list_for_each_entry(td, &qh->qtd_list, qtd_list) { scratch = hc32_to_cpup(fusbh200, &td->hw_token); mark = ' '; if (hw_curr == td->qtd_dma) |