| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * PowerPC 4xx Clock and Power Management |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 14 | 15 | * |
|---|
| 15 | 16 | * See file CREDITS for list of people who contributed to this |
|---|
| 16 | 17 | * project. |
|---|
| 17 | | - * |
|---|
| 18 | | - * This program is free software; you can redistribute it and/or |
|---|
| 19 | | - * modify it under the terms of the GNU General Public License as |
|---|
| 20 | | - * published by the Free Software Foundation; either version 2 of |
|---|
| 21 | | - * the License, or (at your option) any later version. |
|---|
| 22 | | - * |
|---|
| 23 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 24 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 25 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 26 | | - * GNU General Public License for more details. |
|---|
| 27 | | - * |
|---|
| 28 | | - * You should have received a copy of the GNU General Public License |
|---|
| 29 | | - * along with this program; if not, write to the Free Software |
|---|
| 30 | | - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
|---|
| 31 | | - * MA 02111-1307 USA |
|---|
| 32 | 18 | */ |
|---|
| 33 | 19 | |
|---|
| 34 | 20 | #include <linux/kernel.h> |
|---|
| .. | .. |
|---|
| 341 | 327 | static int __init cpm_powersave_off(char *arg) |
|---|
| 342 | 328 | { |
|---|
| 343 | 329 | cpm.powersave_off = 1; |
|---|
| 344 | | - return 0; |
|---|
| 330 | + return 1; |
|---|
| 345 | 331 | } |
|---|
| 346 | 332 | __setup("powersave=off", cpm_powersave_off); |
|---|