diff options
| -rw-r--r-- | drivers/scsi/aha152x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/aha152x.c b/drivers/scsi/aha152x.c index f0c4ffceabbe..1dca1775f4b1 100644 --- a/drivers/scsi/aha152x.c +++ b/drivers/scsi/aha152x.c | |||
| @@ -3914,9 +3914,9 @@ static int __init aha152x_init(void) | |||
| 3914 | 3914 | ||
| 3915 | static void __exit aha152x_exit(void) | 3915 | static void __exit aha152x_exit(void) |
| 3916 | { | 3916 | { |
| 3917 | struct aha152x_hostdata *hd; | 3917 | struct aha152x_hostdata *hd, *tmp; |
| 3918 | 3918 | ||
| 3919 | list_for_each_entry(hd, &aha152x_host_list, host_list) { | 3919 | list_for_each_entry_safe(hd, tmp, &aha152x_host_list, host_list) { |
| 3920 | struct Scsi_Host *shost = container_of((void *)hd, struct Scsi_Host, hostdata); | 3920 | struct Scsi_Host *shost = container_of((void *)hd, struct Scsi_Host, hostdata); |
| 3921 | 3921 | ||
| 3922 | aha152x_release(shost); | 3922 | aha152x_release(shost); |
