power: reset: at91-reset: pass rstc base address to at91_reset_status()
Add new argument to at91_reset_status() that is the pointer to reset controller base address. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
这个提交包含在:

提交者
Sebastian Reichel

父节点
b7967b7919
当前提交
55f8e6fdef
@@ -152,10 +152,11 @@ static int samx7_restart(struct notifier_block *this, unsigned long mode,
|
||||
return NOTIFY_DONE;
|
||||
}
|
||||
|
||||
static void __init at91_reset_status(struct platform_device *pdev)
|
||||
static void __init at91_reset_status(struct platform_device *pdev,
|
||||
void __iomem *base)
|
||||
{
|
||||
const char *reason;
|
||||
u32 reg = readl(reset->rstc_base + AT91_RSTC_SR);
|
||||
u32 reg = readl(base + AT91_RSTC_SR);
|
||||
|
||||
switch ((reg & AT91_RSTC_RSTTYP) >> 8) {
|
||||
case RESET_TYPE_GENERAL:
|
||||
@@ -255,7 +256,7 @@ static int __init at91_reset_probe(struct platform_device *pdev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
at91_reset_status(pdev);
|
||||
at91_reset_status(pdev, reset->rstc_base);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
在新工单中引用
屏蔽一个用户