Skip to content

Commit

Permalink
libphoenix: rename dirs in include/arch to match those in arch
Browse files Browse the repository at this point in the history
JIRA: RTOS-664
  • Loading branch information
badochov committed Dec 10, 2023
1 parent ccd62fe commit 0c8e177
Show file tree
Hide file tree
Showing 21 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion arch/armv7a/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Makefile for libphoenix/arch/arm-imx
# Makefile for libphoenix/arch/armv7a
#
# Copyright 2017, 2020 Phoenix Systems
# Author: Pawel Pisarczyk
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7a/_start.S
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Entrypoint (arm-imx)
* Entrypoint (armv7a)
*
* Copyright 2018 Phoenix Systems
* Author; Aleksander Kaminski
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7a/signal.S
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Signal trampoline (arm-imx)
* Signal trampoline (armv7a)
*
* Copyright 2019, 2023 Phoenix Systems
* Author: Jan Sikorski
Expand Down
4 changes: 2 additions & 2 deletions arch/armv7a/string.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
* Phoenix-RTOS
*
* Operating system kernel
* libphoenix
*
* arch/arm-imx
* arch/armv7a
*
* Copyright 2017, 2018 Phoenix Systems
* Author: Aleksander Kaminski, Pawel Pisarczyk
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7a/syscalls.S
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* syscalls (arm-imx)
* syscalls (armv7a)
*
* Copyright 2017, 2018 Phoenix Systems
* Author; Pawel Pisarczyk, Aleksander Kaminski
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7m/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Makefile for libphoenix/arch/armv7
# Makefile for libphoenix/arch/armv7m
#
# Copyright 2017, 2020 Phoenix Systems
# Author: Pawel Pisarczyk
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7m/_start.S
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Entrypoint (armv7)
* Entrypoint (armv7m)
*
* Copyright 2018 Phoenix Systems
* Author; Aleksander Kaminski
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7m/signal.S
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Signal trampoline (armv7)
* Signal trampoline (armv7m)
*
* Copyright 2019, 2023 Phoenix Systems
* Author: Jan Sikorski
Expand Down
4 changes: 2 additions & 2 deletions arch/armv7m/string.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
* Phoenix-RTOS
*
* Operating system kernel
* libphoenix
*
* arch/armv7
* arch/armv7m
*
* Copyright 2017 Phoenix Systems
* Author: Aleksander Kaminski, Pawel Pisarczyk
Expand Down
2 changes: 1 addition & 1 deletion arch/armv7m/syscalls.S
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* syscalls (armv7)
* syscalls (armv7m)
*
* Copyright 2017 Phoenix Systems
* Author; Pawel Pisarczyk, Aleksander Kaminski
Expand Down
8 changes: 4 additions & 4 deletions include/arch/arm-imx/arch.h → include/arch/armv7a/arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part (arch/arm-imx)
* Architecture dependent part (arch/armv7a)
*
* Copyright 2017, 2018 Phoenix Systems
* Author: Pawel Pisarczyk, Aleksander Kaminski
Expand All @@ -16,9 +16,9 @@
#ifndef _LIBPHOENIX_ARCH_ARM_IMX_ARCH_H_
#define _LIBPHOENIX_ARCH_ARM_IMX_ARCH_H_

#define __ARCH_STDINT <arch/arm-imx/stdint.h>
#define __ARCH_LIMITS <arch/arm-imx/limits.h>
#define __ARCH_SYS_TYPES <arch/arm-imx/types.h>
#define __ARCH_STDINT <arch/armv7a/stdint.h>
#define __ARCH_LIMITS <arch/armv7a/limits.h>
#define __ARCH_SYS_TYPES <arch/armv7a/types.h>

#define __MEMCPY
#define __MEMCMP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part of limits (arch/arm-imx)
* Architecture dependent part of limits (arch/armv7a)
*
* Copyright 2017-2019 Phoenix Systems
* Author: Pawel Pisarczyk, Aleksander Kaminski, Andrzej Glowinski, Marek Bialowas
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part of stdint (arch/arm-imx)
* Architecture dependent part of stdint (arch/armv7a)
*
* Copyright 2019-2021 Phoenix Systems
* Author: Andrzej Glowinski, Daniel Sawka
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part of types (arch/arm-imx)
* Architecture dependent part of types (arch/armv7a)
*
* Copyright 2019 Phoenix Systems
* Author: Andrzej Glowinski
Expand Down
8 changes: 4 additions & 4 deletions include/arch/armv7/arch.h → include/arch/armv7m/arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part (arch/armv7)
* Architecture dependent part (arch/armv7m)
*
* Copyright 2017 Phoenix Systems
* Author: Pawel Pisarczyk
Expand All @@ -16,9 +16,9 @@
#ifndef _LIBPHOENIX_ARCH_ARMV7_ARCH_H_
#define _LIBPHOENIX_ARCH_ARMV7_ARCH_H_

#define __ARCH_STDINT <arch/armv7/stdint.h>
#define __ARCH_LIMITS <arch/armv7/limits.h>
#define __ARCH_SYS_TYPES <arch/armv7/types.h>
#define __ARCH_STDINT <arch/armv7m/stdint.h>
#define __ARCH_LIMITS <arch/armv7m/limits.h>
#define __ARCH_SYS_TYPES <arch/armv7m/types.h>

#define __MEMCPY
#define __MEMCMP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part of limits (arch/armv7)
* Architecture dependent part of limits (arch/armv7m)
*
* Copyright 2017-2019 Phoenix Systems
* Author: Pawel Pisarczyk, Aleksander Kaminski, Andrzej Glowinski, Marek Bialowas
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part of stdint (arch/armv7)
* Architecture dependent part of stdint (arch/armv7m)
*
* Copyright 2019-2021 Phoenix Systems
* Author: Andrzej Glowinski, Daniel Sawka
Expand Down
2 changes: 1 addition & 1 deletion include/arch/armv7/types.h → include/arch/armv7m/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* libphoenix
*
* Architecture dependent part of types (arch/armv7)
* Architecture dependent part of types (arch/armv7m)
*
* Copyright 2019 Phoenix Systems
* Author: Andrzej Glowinski
Expand Down
2 changes: 1 addition & 1 deletion include/arch/riscv64/io.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Phoenix-RTOS
*
* Operating system kernel
* libphoenix
*
* SBI routines (RISCV64)
*
Expand Down
2 changes: 1 addition & 1 deletion stdlib/bsearch.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Phoenix-RTOS
*
* Operating system kernel
* libphoenix
*
* Binary search
*
Expand Down
2 changes: 1 addition & 1 deletion stdlib/qsort.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Phoenix-RTOS
*
* Operating system kernel
* libphoenix
*
* Quicksort
*
Expand Down

0 comments on commit 0c8e177

Please sign in to comment.