diff options
author | Himangi Saraogi <himangi774@gmail.com> | 2014-07-24 02:46:38 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-24 23:31:36 -0700 |
commit | 7b18ef08ba58a91bef7149e64443397cfc2523f3 (patch) | |
tree | feff2ea5cbfcd8894697f09e656f55710c24a443 /drivers/mtd/mtdblock_ro.c | |
parent | c81576c225b942496feb9fbef5bca506bc64ce57 (diff) |
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:
// <smpl>
@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
// </smpl>
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/mtd/mtdblock_ro.c')
0 files changed, 0 insertions, 0 deletions