@@ -68,8 +68,6 @@ static int mf_init(struct hid_device *hid)
struct list_head *report_list =
&hid->report_enum[HID_OUTPUT_REPORT].report_list;
-
- struct list_head *report_ptr;
struct hid_report *report;
struct list_head *input_ptr = &hid->inputs;
@@ -80,9 +78,7 @@ static int mf_init(struct hid_device *hid)
int error;
/* Setup each of the four inputs */
- list_for_each(report_ptr, report_list) {
- report = list_entry(report_ptr, struct hid_report, list);
-
+ list_for_each_entry(report, report_list, list) {
if (report->maxfield < 1 || report->field[0]->report_count < 2) {
hid_err(hid, "Invalid report, this should never happen!\n");
return -ENODEV;