diff options
| author | 2017-01-02 09:59:40 +0100 | |
|---|---|---|
| committer | 2017-01-16 07:27:54 +0100 | |
| commit | 970ba6ac6a59ff1f1579e472a97765adc50186f9 (patch) | |
| tree | 7121c6d5120eb89ee445791d11943aae5c234341 /arch/s390/kernel/processor.c | |
| parent | s390: remove couple of unneeded semicolons (diff) | |
| download | linux-dev-970ba6ac6a59ff1f1579e472a97765adc50186f9.tar.xz linux-dev-970ba6ac6a59ff1f1579e472a97765adc50186f9.zip | |
s390: use false/true when using bool
Yet another trivial patch to reduce the noise that coccinelle
generates.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/processor.c')
| -rw-r--r-- | arch/s390/kernel/processor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/processor.c b/arch/s390/kernel/processor.c index 9e60ef144d03..8733b07b5691 100644 --- a/arch/s390/kernel/processor.c +++ b/arch/s390/kernel/processor.c @@ -32,7 +32,7 @@ static bool machine_has_cpu_mhz; void __init cpu_detect_mhz_feature(void) { if (test_facility(34) && __ecag(ECAG_CPU_ATTRIBUTE, 0) != -1UL) - machine_has_cpu_mhz = 1; + machine_has_cpu_mhz = true; } static void update_cpu_mhz(void *arg) |
