Commit bacb58ea authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] fix the compilation of eata_pio_proc.c

The change to eata_pio_proc.c contained a typo: a semicolon instead of a
comma.
parent d5638c5c
......@@ -85,7 +85,7 @@ int eata_pio_proc_info(char *buffer, char **start, off_t offset, int length,
len += size;
pos = begin + len;
list_for_each_entry(scd, &HBA_ptr->my_devices; siblings) {
list_for_each_entry(scd, &HBA_ptr->my_devices, siblings) {
proc_print_scsidevice(scd, buffer, &size, len);
len += size;
pos = begin + len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment