gpio: zynq: use container_of() to get state container
authorLinus Walleij <linus.walleij@linaro.org>
Thu, 27 Aug 2015 12:26:46 +0000 (14:26 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 2 Oct 2015 11:19:33 +0000 (04:19 -0700)
commitfa9795d1121e18a6ee2d0f8b2e837f51d63d4b00
treea2a49fcdc5ff1502f4fe88a454df5d83e1c015e1
parent2f930643c581f3fe45568f24a8aba93af46ff287
gpio: zynq: use container_of() to get state container

The state container of the Zynq GPIO driver is sometimes
extracted from the gpio_chip exploiting the fact that offsetof()
the struct gpio_chip inside the struct zynq_gpio is 0, so
the container_of() is in practice a noop. However if a member
is added to struct zynq_gpio in front of struct gpio_chip,
things will break. Using proper container_of() avoids this
problem.

Semantically this is a noop, the compiler will optimize it away,
but syntactically it makes me happier.

Also replace some explicit container_of() calls with the helper
function.

Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Ezra Savard <ezra.savard@xilinx.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Acked-by: Harini Katakam <harinik@xilinx.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-zynq.c