aboutsummaryrefslogtreecommitdiff
path: root/arch/sh/mm
diff options
context:
space:
mode:
authorNicolas Palix <npalix@diku.dk>2009-12-07 10:38:55 +0100
committerPaul Mundt <lethal@linux-sh.org>2009-12-09 12:36:51 +0900
commitf701b3999890b867f87733c146d4cdf9319ead05 (patch)
treeca3ca320dc28d3f4dae92f7bd096c5e13600b04f /arch/sh/mm
parent87a705dde49d0c482fa818f0923af59ed0954d5d (diff)
sh: Replace an explicit computation by the use of the container_of macro
The macro container_of from kernel.h performs the same pointer arithmetic operation. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ type T; expression mptr; expression member; @@ - (void *)((char *)mptr - offsetof(T, member)) + container_of(mptr, T, member) // </smpl> Signed-off-by: Nicolas Palix <npalix@diku.dk> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm')
0 files changed, 0 insertions, 0 deletions