Yoann Padioleau 7e5829b56b [MIPS] 0 -> NULL
When comparing a pointer, it's clearer to compare it to NULL than to 0.

Here is an excerpt of the semantic patch:

@@
expression *E;
@@

  E ==
- 0
+ NULL

@@
expression *E;
@@

  E !=
- 0
+ NULL

Signed-off-by: Yoann Padioleau <padator@wanadoo.fr>
Cc: ralf@linux-mips.org
Cc: linux-mips@linux-mips.org
Cc: akpm@linux-foundation.org
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2007-07-31 21:35:22 +01:00
..
2005-04-16 15:20:36 -07:00
2007-07-10 17:33:03 +01:00
2007-05-09 08:57:56 +02:00
2007-07-11 16:02:11 -07:00
2007-03-04 19:02:45 +00:00
2007-07-31 21:35:22 +01:00
2005-04-16 15:20:36 -07:00
2007-07-10 17:33:03 +01:00
2007-07-31 21:35:22 +01:00
2005-04-16 15:20:36 -07:00
2007-04-27 16:20:23 +01:00
2007-06-01 08:18:28 -07:00