linux/drivers/staging/gdm72xx
Somya Anand 7e6eaa9041 Staging: gdm72xx: Iterate list using list_for_each_entry
Code using doubly linked list is iterated generally  using list_empty and
list_entry functions, but it can be better written using list_for_each_entry
macro.

This patch replaces the while loop containing list_empty and list_entry with
list_for_each_entry and list_for_each_entry_safe. list_for_each_entry is a
macro which is used to iterate over a list of given type. So while loop used to
iterate over a list can be replaced with list_for_each_entry macro. However, if
list_del is used in the loop, then list_for_each_entry_safe is a better choice.
This transformation is done by using the following coccinelle script.

@ rule1 @
expression E1;
identifier I1, I2;
type T;
iterator name list_for_each_entry;
@@

- while (list_empty(&E1) == 0)
+ list_for_each_entry (I1, &E1, I2)
 {
	...when != T *I1;
- 	I1 = list_entry(E1.next, T, I2);
    ...when != list_del(...);
       when != list_del_init(...);
 }

@ rule2  @
expression E1;
identifier I1, I2;
type T;
iterator name list_for_each_entry_safe;
@@
   T *I1;
+  T *tmp;
  ...
- while (list_empty(&E1) == 0)
+ list_for_each_entry_safe (I1, tmp, &E1, I2)
 {
	...when != T *I1;
- 	I1 = list_entry(E1.next, T, I2);
    ...
 }

Signed-off-by: Somya Anand <somyaanand214@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-03-16 16:23:43 +01:00
..
gdm_qos.c staging: gdm72xx: Condense two statements into one to improve code readability. 2015-03-01 16:57:36 -08:00
gdm_qos.h
gdm_sdio.c Staging: gdm72xx: clean dev_err logging 2015-03-06 15:55:36 -08:00
gdm_sdio.h
gdm_usb.c
gdm_usb.h
gdm_wimax.c Staging: gdm72xx: Iterate list using list_for_each_entry 2015-03-16 16:23:43 +01:00
gdm_wimax.h
hci.h
Kconfig PM / Kconfig: Replace PM_RUNTIME with PM in dependencies 2014-12-13 00:44:04 +01:00
Makefile
netlink_k.c drivers: staging: gdm72xx: Removed unnecessary braces. 2014-09-28 23:27:35 -04:00
netlink_k.h
sdio_boot.c
sdio_boot.h
TODO
usb_boot.c
usb_boot.h
usb_ids.h
wm_ioctl.h