Skip to content

Commit 558048a

Browse files
committed
style: fix checkpatch issues after debug.h move
Fixed copespell errors, for CI sucess! Signed-off-by: Piyush Patle <piyushpatle228@gmail.com>
1 parent 5055549 commit 558048a

21 files changed

Lines changed: 75 additions & 59 deletions

File tree

arch/arm/src/at32/at32_pwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
6868
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
6969
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
70-
* complementary outptus
70+
* complementary outputs
7171
*/
7272
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
7373
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

arch/arm/src/c5471/c5471_ethernet.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@
260260
#define MD_PHY_LSB_REG 0x03
261261
#define MD_PHY_CTRL_STAT_REG 0x17
262262

263-
/* Lucent LU3X31T-T64 transeiver ID */
263+
/* Lucent LU3X31T-T64 transceiver ID */
264264

265265
#define LU3X31_T64_PHYID 0x00437421
266266

@@ -446,8 +446,8 @@ static inline void c5471_dumpbuffer(const char *msg, const uint8_t *buffer,
446446
*
447447
* Description:
448448
* A helper routine used when serially communicating with the c547X's
449-
* external ethernet transeiver device. GPIO pins are connected to the
450-
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
449+
* external ethernet transceiver device. GPIO pins are connected to the
450+
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
451451
* comm.
452452
*
453453
* protocol:
@@ -513,8 +513,8 @@ static void c5471_mdtxbit (int bit_state)
513513
*
514514
* Description:
515515
* A helper routine used when serially communicating with the c547X's
516-
* external ethernet transeiver device. GPIO pins are connected to the
517-
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
516+
* external ethernet transceiver device. GPIO pins are connected to the
517+
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
518518
* comm.
519519
*
520520
* protocol:
@@ -574,8 +574,8 @@ static int c5471_mdrxbit (void)
574574
*
575575
* Description:
576576
* A helper routine used when serially communicating with the c547X's
577-
* external ethernet transeiver device. GPIO pins are connected to the
578-
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
577+
* external ethernet transceiver device. GPIO pins are connected to the
578+
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
579579
* comm.
580580
*
581581
****************************************************************************/
@@ -636,8 +636,8 @@ static void c5471_mdwrite (int adr, int reg, int data)
636636
*
637637
* Description:
638638
* A helper routine used when serially communicating with the c547X's
639-
* external ethernet transeiver device. GPIO pins are connected to the
640-
* transeiver's MDCLK and MDIO pins and are used to accomplish the serial
639+
* external ethernet transceiver device. GPIO pins are connected to the
640+
* transceiver's MDCLK and MDIO pins and are used to accomplish the serial
641641
* comm.
642642
*
643643
****************************************************************************/
@@ -700,21 +700,21 @@ static int c5471_mdread (int adr, int reg)
700700
* Name: c5471_phyinit
701701
*
702702
* Description:
703-
* The c547X EVM board uses a Lucent LU3X31T-T64 transeiver device to
703+
* The c547X EVM board uses a Lucent LU3X31T-T64 transceiver device to
704704
* handle the physical layer (PHY). It's a h/w block that on the one end
705705
* offers a Media Independent Interface (MII) which is connected to the
706706
* Ethernet Interface Module (EIM) internal to the C547x and on the other
707707
* end offers either the 10baseT or 100baseT electrical interface
708-
* connecting to an RJ45 onboard network connector. The PHY transeiver has
708+
* connecting to an RJ45 onboard network connector. The PHY transceiver has
709709
* several internal registers allowing host configuration and status
710710
* access. These internal registers are accessible by clocking serial data
711711
* in/out of the MDIO pin of the LU3X31T-T64 chip. For c547X, the MDC and
712712
* the MDIO pins are connected to the C547x GPIO15 and GPIO14 pins
713713
* respectively. Host software twiddles the GPIO pins appropriately to get
714714
* data serially into and out of the chip. This is typically a one time
715-
* operation at boot and normal operation of the transeiver involves
716-
* EIM/Transeiver interaction at the other pins of the transeiver chip and
717-
* doesn't require host intervention at the MDC and MDIO pins.
715+
* operation at boot and normal operation of the transceiver involves
716+
* EIM/Transceiver interaction at the other pins of the transceiver chip
717+
* and doesn't require host intervention at the MDC and MDIO pins.
718718
*
719719
****************************************************************************/
720720

@@ -724,7 +724,7 @@ static int c5471_phyinit (void)
724724
int phyid;
725725
int status;
726726

727-
/* Next, Setup GPIO pins to talk serially to the Lucent transeiver chip */
727+
/* Next, Setup GPIO pins to talk serially to the Lucent transceiver chip */
728728

729729
/* enable gpio bits 15,14 */
730730

@@ -786,7 +786,7 @@ static int c5471_phyinit (void)
786786
int phyid;
787787
int status;
788788

789-
/* Next, Setup GPIO pins to talk serially to the Lucent transeiver chip */
789+
/* Next, Setup GPIO pins to talk serially to the Lucent transceiver chip */
790790

791791
putreg32((getreg32(GPIO_EN) | 0x0000c000), GPIO_EN); /* enable gpio bits 15,14 */
792792
putreg32((getreg32(GPIO_CIO) & ~0x00008000), GPIO_CIO); /* config gpio(15); out -> MDCLK */

arch/arm/src/imx9/imx9_timerisr.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,25 +144,25 @@ static void up_pm_notify(struct pm_callback_s *cb, int domain,
144144
{
145145
switch (pmstate)
146146
{
147-
case(PM_NORMAL):
147+
case (PM_NORMAL):
148148
{
149149
/* Logic for PM_NORMAL goes here */
150150
}
151151
break;
152152

153-
case(PM_IDLE):
153+
case (PM_IDLE):
154154
{
155155
/* Logic for PM_IDLE goes here */
156156
}
157157
break;
158158

159-
case(PM_STANDBY):
159+
case (PM_STANDBY):
160160
{
161161
/* Logic for PM_STANDBY goes here */
162162
}
163163
break;
164164

165-
case(PM_SLEEP):
165+
case (PM_SLEEP):
166166
{
167167
/* Logic for PM_SLEEP goes here */
168168
}

arch/arm/src/imxrt/imxrt_timerisr.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,25 +145,25 @@ static void up_pm_notify(struct pm_callback_s *cb, int domain,
145145
{
146146
switch (pmstate)
147147
{
148-
case(PM_NORMAL):
148+
case (PM_NORMAL):
149149
{
150150
/* Logic for PM_NORMAL goes here */
151151
}
152152
break;
153153

154-
case(PM_IDLE):
154+
case (PM_IDLE):
155155
{
156156
/* Logic for PM_IDLE goes here */
157157
}
158158
break;
159159

160-
case(PM_STANDBY):
160+
case (PM_STANDBY):
161161
{
162162
/* Logic for PM_STANDBY goes here */
163163
}
164164
break;
165165

166-
case(PM_SLEEP):
166+
case (PM_SLEEP):
167167
{
168168
/* Logic for PM_SLEEP goes here */
169169
}

arch/arm/src/lc823450/lc823450_sdc.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
* arch/arm/src/lc823450/lc823450_sdc.c
33
*
44
* SPDX-License-Identifier: BSD-3-Clause
5-
* SPDX-FileCopyrightText: 2014,2015,2016,2017 Sony Video & Sound Products Inc.
5+
* SPDX-FileCopyrightText: 2014,2015,2016,2017 Sony Video & Sound
6+
* Products Inc.
67
* SPDX-FileCopyrightText: 2014-2015 ON Semiconductor. All rights reserved.
78
* SPDX-FileContributor: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
89
* SPDX-FileContributor: Masatoshi Tateishi <Masatoshi.Tateishi@jp.sony.com>

arch/arm/src/lpc17xx_40xx/lpc17_40_dac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* arch/arm/src/lpc17xx_40xx/lpc17_40_dac.c
33
*
44
* SPDX-License-Identifier: BSD-3-Clause
5-
* SPDX-FileCopyrightText: 2010, 2014, 2016 Gregory Nutt. All rights reserved.
5+
* SPDX-FileCopyrightText: 2010,2014,2016 Gregory Nutt. All rights reserved.
66
* SPDX-FileCopyrightText: 2011 Li Zhuoyi. All rights reserved.
77
* SPDX-FileContributor: Li Zhuoyi <lzyy.cn@gmail.com>
88
*

arch/arm/src/stm32/stm32_pwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
6969
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
7070
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
71-
* complementary outptus
71+
* complementary outputs
7272
*/
7373
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
7474
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

arch/arm/src/stm32f7/stm32_pwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
5757
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
5858
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
59-
* complementary outptus
59+
* complementary outputs
6060
*/
6161
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
6262
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

arch/arm/src/stm32h5/stm32_pwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
6262
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
6363
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
64-
* complementary outptus
64+
* complementary outputs
6565
*/
6666
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
6767
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

arch/arm/src/stm32h7/stm32_pwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#define TIMTYPE_GENERAL16 1 /* General 16-bit timers (up, down, up/down)*/
6464
#define TIMTYPE_COUNTUP16 2 /* General 16-bit count-up timers */
6565
#define TIMTYPE_COUNTUP16_N 3 /* General 16-bit count-up timers with
66-
* complementary outptus
66+
* complementary outputs
6767
*/
6868
#define TIMTYPE_GENERAL32 4 /* General 32-bit timers (up, down, up/down)*/
6969
#define TIMTYPE_ADVANCED 5 /* Advanced timers */

0 commit comments

Comments
 (0)