From: Himangi Saraogi Date: Wed, 23 Jul 2014 21:16:38 +0000 (+0530) Subject: isdn: use constants instead of magicnumbers X-Git-Tag: omap-for-v3.17/fixes-against-rc2~149^2~84 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b18ef08ba58a91bef7149e64443397cfc2523f3;p=pandora-kernel.git isdn: use constants instead of magicnumbers This patch changes instances of magic numbers like 4 and 8 to equivalent constants. The Coccinelle semantic patch used for making the change is as follows: // @r@ type T; T E; identifier fld; identifier c; @@ E->fld & c @s@ constant C; identifier r.c; @@ #define c C @@ r.T E; identifier r.fld; identifier r.c; constant s.C; @@ E->fld & - C + c // Signed-off-by: Himangi Saraogi Acked-by: Julia Lawall Signed-off-by: David S. Miller --- Reading git-diff-tree failed