Skip to content

Commit 69100ef

Browse files
xiaoxiang781216raiden00pl
authored andcommitted
arch: Fix minor style issue
not real behaviour change Signed-off-by: Xiang Xiao <[email protected]>
1 parent 992c8dd commit 69100ef

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

arch/arm/src/armv6-m/arm_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
void arm_sigdeliver(void)
5555
{
56-
struct tcb_s *rtcb = this_task();
56+
struct tcb_s *rtcb = this_task();
5757
uint32_t *regs = rtcb->xcp.saved_regs;
5858

5959
#ifdef CONFIG_SMP

arch/arm/src/armv7-r/arm_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
void arm_sigdeliver(void)
5555
{
56-
struct tcb_s *rtcb = this_task();
56+
struct tcb_s *rtcb = this_task();
5757
uint32_t *regs = rtcb->xcp.saved_regs;
5858

5959
#ifdef CONFIG_SMP

arch/arm/src/armv8-r/arm_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
void arm_sigdeliver(void)
5555
{
56-
struct tcb_s *rtcb = this_task();
56+
struct tcb_s *rtcb = this_task();
5757
uint32_t *regs = rtcb->xcp.saved_regs;
5858

5959
#ifdef CONFIG_SMP

arch/arm64/src/common/arm64_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
void arm64_sigdeliver(void)
5656
{
57-
struct tcb_s *rtcb = this_task();
57+
struct tcb_s *rtcb = this_task();
5858

5959
#ifdef CONFIG_SMP
6060
/* In the SMP case, we must terminate the critical section while the signal

arch/arm64/src/common/arm64_vectors.S

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ SECTION_FUNC(text, arm64_irq_handler)
236236

237237
GTEXT(arm64_serror_handler)
238238
SECTION_FUNC(text, arm64_serror_handler)
239-
mov x0, sp
240-
adrp x5, arm64_fatal_handler
241-
add x5, x5, #:lo12:arm64_fatal_handler
242-
br x5
239+
mov x0, sp
240+
adrp x5, arm64_fatal_handler
241+
add x5, x5, #:lo12:arm64_fatal_handler
242+
br x5
243243
/* Return here only in case of recoverable error */
244244

245245
b arm64_exit_exception
@@ -255,8 +255,8 @@ SECTION_FUNC(text, arm64_serror_handler)
255255
GTEXT(arm64_mode32_handler)
256256
SECTION_FUNC(text, arm64_mode32_handler)
257257
mov x0, sp
258-
adrp x5, arm64_fatal_handler
259-
add x5, x5, #:lo12:arm64_fatal_handler
258+
adrp x5, arm64_fatal_handler
259+
add x5, x5, #:lo12:arm64_fatal_handler
260260
br x5
261261
/* Return here only in case of recoverable error */
262262

@@ -275,8 +275,8 @@ SECTION_FUNC(text, arm64_fiq_handler)
275275
#ifndef CONFIG_ARM64_DECODEFIQ
276276

277277
mov x0, sp
278-
adrp x5, arm64_fatal_handler
279-
add x5, x5, #:lo12:arm64_fatal_handler
278+
adrp x5, arm64_fatal_handler
279+
add x5, x5, #:lo12:arm64_fatal_handler
280280
br x5
281281

282282
/* Return here only in case of recoverable error */

arch/ceva/src/common/ceva_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
void ceva_sigdeliver(void)
5252
{
53-
struct tcb_s *rtcb = this_task();
53+
struct tcb_s *rtcb = this_task();
5454
uint32_t *regs = rtcb->xcp.saved_regs;
5555
sig_deliver_t sigdeliver;
5656

arch/renesas/src/sh1/sh1_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
void renesas_sigdeliver(void)
5454
{
55-
struct tcb_s *rtcb = this_task();
55+
struct tcb_s *rtcb = this_task();
5656
uint32_t regs[XCPTCONTEXT_REGS];
5757

5858
board_autoled_on(LED_SIGNAL);

arch/z80/src/z180/z180_sigdeliver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
void z80_sigdeliver(void)
5454
{
55-
FAR struct tcb_s *rtcb = this_task();
55+
FAR struct tcb_s *rtcb = this_task();
5656
chipreg_t regs[XCPTCONTEXT_REGS];
5757

5858
board_autoled_on(LED_SIGNAL);

0 commit comments

Comments
 (0)