Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: cleanup comments

For spdx
Space instead of tab before spdx tag

Removed repeated works
the, to, two

Replacements
much much to a much
'to to' to 'to do'
aready to already
Comunications to Communications
freqency to frequency

Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20220222195153.3817625-1-trix@redhat.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Tom Rix and committed by
Stephen Boyd
7c55e8ef 6f3cf248

+9 -9
+1 -1
drivers/clk/at91/sckc.c
··· 535 535 536 536 /* 537 537 * Assume that if it has already been selected (for example by the 538 - * bootloader), enough time has aready passed. 538 + * bootloader), enough time has already passed. 539 539 */ 540 540 if ((readl(osc->sckcr) & osc->bits->cr_oscsel)) { 541 541 osc->prepared = true;
+1 -1
drivers/clk/axis/clk-artpec6.c
··· 2 2 /* 3 3 * ARTPEC-6 clock initialization 4 4 * 5 - * Copyright 2015-2016 Axis Comunications AB. 5 + * Copyright 2015-2016 Axis Communications AB. 6 6 */ 7 7 8 8 #include <linux/clk-provider.h>
+1 -1
drivers/clk/bcm/clk-iproc.h
··· 89 89 * Parameters for VCO frequency configuration 90 90 * 91 91 * VCO frequency = 92 - * ((ndiv_int + ndiv_frac / 2^20) * (ref freqeuncy / pdiv) 92 + * ((ndiv_int + ndiv_frac / 2^20) * (ref frequency / pdiv) 93 93 */ 94 94 struct iproc_pll_vco_param { 95 95 unsigned long rate;
+1 -1
drivers/clk/bcm/clk-kona-setup.c
··· 510 510 * placeholders for non-supported clocks. Keep track of the 511 511 * position of each clock name in the original array. 512 512 * 513 - * Allocates an array of pointers to to hold the names of all 513 + * Allocates an array of pointers to hold the names of all 514 514 * non-null entries in the original array, and returns a pointer to 515 515 * that array in *names. This will be used for registering the 516 516 * clock with the common clock code. On successful return,
+1 -1
drivers/clk/clk-fractional-divider.c
··· 34 34 * and assume that the IP, that needs m and n, has also its own 35 35 * prescaler, which is capable to divide by 2^scale. In this way 36 36 * we get the denominator to satisfy the desired range (2) and 37 - * at the same time much much better result of m and n than simple 37 + * at the same time a much better result of m and n than simple 38 38 * saturated values. 39 39 */ 40 40
+1 -1
drivers/clk/clk-si5341.c
··· 655 655 f = synth->data->freq_vco; 656 656 f *= n_den >> 4; 657 657 658 - /* Now we need to to 64-bit division: f/n_num */ 658 + /* Now we need to do 64-bit division: f/n_num */ 659 659 /* And compensate for the 4 bits we dropped */ 660 660 f = div64_u64(f, (n_num >> 4)); 661 661
+1 -1
drivers/clk/meson/meson8b.c
··· 2232 2232 }; 2233 2233 2234 2234 /* 2235 - * The VPU clock has two two identical clock trees (vpu_0 and vpu_1) 2235 + * The VPU clock has two identical clock trees (vpu_0 and vpu_1) 2236 2236 * muxed by a glitch-free switch on Meson8b and Meson8m2. The CCF can 2237 2237 * actually manage this glitch-free mux because it does top-to-bottom 2238 2238 * updates the each clock tree and switches to the "inactive" one when
+1 -1
drivers/clk/mmp/pwr-island.c
··· 76 76 if (pm_domain->lock) 77 77 spin_lock_irqsave(pm_domain->lock, flags); 78 78 79 - /* Turn off and isolate the the power island. */ 79 + /* Turn off and isolate the power island. */ 80 80 val = readl(pm_domain->reg); 81 81 val &= ~pm_domain->power_on; 82 82 val &= ~0x100;
+1 -1
drivers/clk/socfpga/clk-gate-s10.c
··· 1 - // SPDX-License-Identifier: GPL-2.0 1 + // SPDX-License-Identifier: GPL-2.0 2 2 /* 3 3 * Copyright (C) 2017, Intel Corporation 4 4 */