Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6fe8e7c authored by Chen Gang's avatar Chen Gang Committed by Vineet Gupta
Browse files

arc: export symbol for pm_power_off in reset.c



Need export symbol for it, or can not pass compiling, the related error
with allmodconfig:

    MODPOST 2994 modules
  ERROR: "pm_power_off" [drivers/mfd/retu-mfd.ko] undefined!
  ERROR: "pm_power_off" [drivers/char/ipmi/ipmi_poweroff.ko] undefined!

Signed-off-by: default avatarChen Gang <gang.chen@asianux.com>
Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent 8f146d02
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -31,3 +31,4 @@ void machine_power_off(void)
}
}


void (*pm_power_off) (void) = NULL;
void (*pm_power_off) (void) = NULL;
EXPORT_SYMBOL(pm_power_off);