power: reset: at91-reset: change the power on reason prototype
authorMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 16 Jun 2023 13:52:51 +0000 (15:52 +0200)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Mon, 19 Jun 2023 21:33:14 +0000 (23:33 +0200)
commitcba266a4f62bcf82528c45cf569412c542c007c9
treebeb1af79c9c4db81463efab8a913002ddb23ae82
parent4dea2fd6e83c4aaa47c68987d4c68d39b5ae9654
power: reset: at91-reset: change the power on reason prototype

It is quite uncommon to use a driver helper with parameters like *pdev
and __iomem *base. It is much cleaner and close to today's standards to
provide the per-device driver structure and then access its
internals. Let's do this with the helper which returns the power on
reason. While we change the parameters, we can as well rename the
function from at91_reset_status() to at91_reset_reason() to be more
accurate with what the helper actually does, and finally because we don't
really need the pdev argument in this helper besides for printing the
reset reason, we can move the dev_info() call into the probe.

All these modifications prepare the introduction of a sysfs entry to
access this information. This way the diff will be much smaller. Thus,
there is no intended functional change.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/reset/at91-reset.c