Skip to content

Commit fcba685

Browse files
simbit18pkarashchenko
authored andcommitted
arch: Fix nxstyle errors
error: Long line found
1 parent bdb5639 commit fcba685

File tree

14 files changed

+329
-312
lines changed

14 files changed

+329
-312
lines changed

arch/avr/include/avr32/avr32.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/************************************************************************************
1+
/****************************************************************************
22
* arch/avr/include/avr32/avr32.h
33
*
44
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -16,20 +16,20 @@
1616
* License for the specific language governing permissions and limitations
1717
* under the License.
1818
*
19-
************************************************************************************/
19+
****************************************************************************/
2020

2121
#ifndef __ARCH_AVR_INCLUDE_AVR32_AVR32_H
2222
#define __ARCH_AVR_INCLUDE_AVR32_AVR32_H
2323

24-
/************************************************************************************
24+
/****************************************************************************
2525
* Included Files
26-
************************************************************************************/
26+
****************************************************************************/
2727

2828
#include <nuttx/config.h>
2929

30-
/************************************************************************************
30+
/****************************************************************************
3131
* Pre-processor Definitions
32-
************************************************************************************/
32+
****************************************************************************/
3333

3434
/* AVR32 System Registers */
3535

@@ -175,16 +175,16 @@
175175
#define AVR32_SR_H_SHIFT 29
176176
#define AVR32_SR_H_MASK (1 << AVR32_SR_H_SHIFT)
177177

178-
/************************************************************************************
178+
/****************************************************************************
179179
* Public Types
180-
************************************************************************************/
180+
****************************************************************************/
181181

182-
/************************************************************************************
182+
/****************************************************************************
183183
* Public Data
184-
************************************************************************************/
184+
****************************************************************************/
185185

186-
/************************************************************************************
186+
/****************************************************************************
187187
* Public Functions Prototypes
188-
************************************************************************************/
188+
****************************************************************************/
189189

190190
#endif /* __ARCH_AVR_INCLUDE_AVR32_AVR32_H */
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/************************************************************************************
1+
/****************************************************************************
22
* arch/avr/src/at32uc3/at32uc3a_pinmux.h
33
*
44
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -16,33 +16,33 @@
1616
* License for the specific language governing permissions and limitations
1717
* under the License.
1818
*
19-
************************************************************************************/
19+
****************************************************************************/
2020

2121
#ifndef __ARCH_AVR_SRC_AT32UC3_AT32UC3A_PINMUX_H
2222
#define __ARCH_AVR_SRC_AT32UC3_AT32UC3A_PINMUX_H
2323

24-
/************************************************************************************
24+
/****************************************************************************
2525
* Included Files
26-
************************************************************************************/
26+
****************************************************************************/
2727

2828
#include <nuttx/config.h>
2929

30-
/************************************************************************************
30+
/****************************************************************************
3131
* Pre-processor Definitions
32-
************************************************************************************/
32+
****************************************************************************/
3333

3434
#warning "Not Implemented"
3535

36-
/************************************************************************************
36+
/****************************************************************************
3737
* Public Types
38-
************************************************************************************/
38+
****************************************************************************/
3939

40-
/************************************************************************************
40+
/****************************************************************************
4141
* Public Data
42-
************************************************************************************/
42+
****************************************************************************/
4343

44-
/************************************************************************************
44+
/****************************************************************************
4545
* Public Functions Prototypes
46-
************************************************************************************/
46+
****************************************************************************/
4747

4848
#endif /* __ARCH_AVR_SRC_AT32UC3_AT32UC3_PINMUX_H */

arch/renesas/include/sh1/irq.h

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/************************************************************************************
1+
/****************************************************************************
22
* arch/renesas/include/sh1/irq.h
33
*
44
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -16,7 +16,7 @@
1616
* License for the specific language governing permissions and limitations
1717
* under the License.
1818
*
19-
************************************************************************************/
19+
****************************************************************************/
2020

2121
/* This file should never be included directly but, rather,
2222
* only indirectly through nuttx/irq.h
@@ -25,16 +25,16 @@
2525
#ifndef __ARCH_RENESAS_INCLUDE_SH1_IRQ_H
2626
#define __ARCH_RENESAS_INCLUDE_SH1_IRQ_H
2727

28-
/************************************************************************************
28+
/****************************************************************************
2929
* Included Files
30-
************************************************************************************/
30+
****************************************************************************/
3131

3232
#include <nuttx/config.h>
3333
#include <stdint.h>
3434

35-
/************************************************************************************
35+
/****************************************************************************
3636
* Pre-processor Definitions
37-
************************************************************************************/
37+
****************************************************************************/
3838

3939
/* IRQ channels */
4040

@@ -241,16 +241,17 @@
241241
#define SH1_SYSTIMER_IRQ SH1_IMIA0_IRQ
242242
#endif
243243

244-
/* Vector table offsets *************************************************************/
244+
/* Vector table offsets *****************************************************/
245245

246-
/* The following provides the vector numbers for each IRQ. The IRQ numbers (above)
247-
* form the densely packet number space used by the system to identify IRQs. The
248-
* following are the (relatively) loosely spaced offsets that identify the location
249-
* of the corresponding vector in the vector table.
246+
/* The following provides the vector numbers for each IRQ.
247+
* The IRQ numbers (above) form the densely packet number space used by the
248+
* system to identify IRQs. The following are the (relatively) loosely
249+
* spaced offsets that identify the location of the corresponding vector
250+
* in the vector table.
250251
*
251-
* These offsets are specified as a vector number (suitably for indexing an array
252-
* of uint32_t) but would have to by multiplied by 4 to get an addressable, byte
253-
* offset.
252+
* These offsets are specified as a vector number (suitably for indexing
253+
* an array of uint32_t) but would have to by multiplied by 4 to get
254+
* an addressable, byte offset.
254255
*/
255256

256257
/* Resets */
@@ -439,9 +440,9 @@
439440
#define XCPTCONTEXT_REGS (22)
440441
#define XCPTCONTEXT_SIZE (4 * XCPTCONTEXT_REGS)
441442

442-
/************************************************************************************
443+
/****************************************************************************
443444
* Public Types
444-
************************************************************************************/
445+
****************************************************************************/
445446

446447
/* This struct defines the way the registers are stored. We need to save: */
447448

@@ -471,9 +472,9 @@ struct xcptcontext
471472
};
472473
#endif
473474

474-
/************************************************************************************
475+
/****************************************************************************
475476
* Public Data
476-
************************************************************************************/
477+
****************************************************************************/
477478

478479
#ifndef __ASSEMBLY__
479480
#ifdef __cplusplus
@@ -484,9 +485,9 @@ extern "C"
484485
#define EXTERN extern
485486
#endif
486487

487-
/************************************************************************************
488+
/****************************************************************************
488489
* Inline Functions
489-
************************************************************************************/
490+
****************************************************************************/
490491

491492
#ifndef __ASSEMBLY__
492493

@@ -563,9 +564,9 @@ static inline void up_irq_restore(irqstate_t flags)
563564
}
564565
#endif
565566

566-
/************************************************************************************
567+
/****************************************************************************
567568
* Public Functions Prototypes
568-
************************************************************************************/
569+
****************************************************************************/
569570

570571
#undef EXTERN
571572
#ifdef __cplusplus

arch/renesas/src/sh1/chip.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/************************************************************************************
1+
/****************************************************************************
22
* arch/renesas/src/sh1/chip.h
33
*
44
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -16,14 +16,14 @@
1616
* License for the specific language governing permissions and limitations
1717
* under the License.
1818
*
19-
************************************************************************************/
19+
****************************************************************************/
2020

2121
#ifndef __ARCH_RENESAS_SRC_SH1_CHIP_H
2222
#define __ARCH_RENESAS_SRC_SH1_CHIP_H
2323

24-
/************************************************************************************
24+
/****************************************************************************
2525
* Included Files
26-
************************************************************************************/
26+
****************************************************************************/
2727

2828
#include <nuttx/config.h>
2929
#include <stdint.h>
@@ -32,20 +32,20 @@
3232
# include "sh1_703x.h"
3333
#endif
3434

35-
/************************************************************************************
35+
/****************************************************************************
3636
* Pre-processor Definitions
37-
************************************************************************************/
37+
****************************************************************************/
3838

39-
/************************************************************************************
39+
/****************************************************************************
4040
* Public Types
41-
************************************************************************************/
41+
****************************************************************************/
4242

43-
/************************************************************************************
43+
/****************************************************************************
4444
* Public Data
45-
************************************************************************************/
45+
****************************************************************************/
4646

47-
/************************************************************************************
47+
/****************************************************************************
4848
* Public Functions Prototypes
49-
************************************************************************************/
49+
****************************************************************************/
5050

5151
#endif /* __ARCH_RENESAS_SRC_SH1_CHIP_H */

0 commit comments

Comments
 (0)