hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/arch/powerpc/platforms/powernv/opal-power.c
....@@ -1,12 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * PowerNV OPAL power control for graceful shutdown handling
34 *
45 * Copyright 2015 IBM Corp.
5
- *
6
- * This program is free software; you can redistribute it and/or
7
- * modify it under the terms of the GNU General Public License
8
- * as published by the Free Software Foundation; either version
9
- * 2 of the License, or (at your option) any later version.
106 */
117
128 #define pr_fmt(fmt) "opal-power: " fmt
....@@ -138,7 +134,7 @@
138134 .priority = 0,
139135 };
140136
141
-static int __init opal_power_control_init(void)
137
+int __init opal_power_control_init(void)
142138 {
143139 int ret, supported = 0;
144140 struct device_node *np;
....@@ -176,4 +172,3 @@
176172
177173 return 0;
178174 }
179
-machine_subsys_initcall(powernv, opal_power_control_init);