Skip to content

Commit a4bee2e

Browse files
committed
ci: Fix formatting issues
Signed-off-by: Devaraj Ranganna <[email protected]>
1 parent 6ea767f commit a4bee2e

20 files changed

+62
-62
lines changed

source/portable/NetworkInterface/MPS3_AN552/CMSIS_Driver/Driver_Common.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* Initial release
3434
*/
3535

36-
/* This file is a copy of
36+
/* This file is a copy of
3737
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Driver/Include/Driver_Common.h
3838
*/
3939

@@ -55,17 +55,17 @@ typedef struct _ARM_DRIVER_VERSION {
5555
} ARM_DRIVER_VERSION;
5656

5757
/* General return codes */
58-
#define ARM_DRIVER_OK 0 ///< Operation succeeded
58+
#define ARM_DRIVER_OK 0 ///< Operation succeeded
5959
#define ARM_DRIVER_ERROR -1 ///< Unspecified error
6060
#define ARM_DRIVER_ERROR_BUSY -2 ///< Driver is busy
6161
#define ARM_DRIVER_ERROR_TIMEOUT -3 ///< Timeout occurred
6262
#define ARM_DRIVER_ERROR_UNSUPPORTED -4 ///< Operation not supported
6363
#define ARM_DRIVER_ERROR_PARAMETER -5 ///< Parameter error
64-
#define ARM_DRIVER_ERROR_SPECIFIC -6 ///< Start of driver specific errors
64+
#define ARM_DRIVER_ERROR_SPECIFIC -6 ///< Start of driver specific errors
6565

6666
/**
6767
\brief General power states
68-
*/
68+
*/
6969
typedef enum _ARM_POWER_STATE {
7070
ARM_POWER_OFF, ///< Power off: no operation possible
7171
ARM_POWER_LOW, ///< Low Power mode: retain state, detect and signal wake-up events

source/portable/NetworkInterface/MPS3_AN552/CMSIS_Driver/Driver_ETH.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Initial release
3838
*/
3939

40-
/* This file is a copy of
40+
/* This file is a copy of
4141
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Driver/Include/Driver_ETH.h
4242
*/
4343

source/portable/NetworkInterface/MPS3_AN552/CMSIS_Driver/Driver_ETH_MAC.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* Initial release
5454
*/
5555

56-
/* This file is a copy of
56+
/* This file is a copy of
5757
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Driver/Include/Driver_ETH_MAC.h
5858
*/
5959

@@ -202,7 +202,7 @@ typedef struct _ARM_ETH_MAC_TIME {
202202
\param[in] len Frame buffer length in bytes
203203
\return number of data bytes read or execution status
204204
- value >= 0: number of data bytes read
205-
- value < 0: error occurred, value is execution status as defined with \ref execution_status
205+
- value < 0: error occurred, value is execution status as defined with \ref execution_status
206206
*/
207207
/**
208208
\fn uint32_t ARM_ETH_MAC_GetRxFrameSize (void)

source/portable/NetworkInterface/MPS3_AN552/CMSIS_Driver/Driver_ETH_PHY.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* Initial release
3939
*/
4040

41-
/* This file is a copy of
41+
/* This file is a copy of
4242
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Driver/Include/Driver_ETH_PHY.h
4343
*/
4444

source/portable/NetworkInterface/MPS3_AN552/CMSIS_Driver/ETH_LAN91C111.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ static int32_t MAC_SendFrame (const uint8_t *frame, uint32_t len, uint32_t flags
575575
\param[in] len Frame buffer length in bytes
576576
\return number of data bytes read or execution status
577577
- value >= 0: number of data bytes read
578-
- value < 0: error occurred, value is execution status as defined with \ref execution_status
578+
- value < 0: error occurred, value is execution status as defined with \ref execution_status
579579
*/
580580
static int32_t MAC_ReadFrame (uint8_t *frame, uint32_t len) {
581581
uint32_t stat,sz,data;

source/portable/NetworkInterface/MPS3_AN552/CMSIS_Driver/ETH_LAN91C111.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Project: Register Interface Definitions for LAN91C111
2626
* -------------------------------------------------------------------- */
2727

28-
/* This file is a copy of
28+
/* This file is a copy of
2929
* https://github.com/ARM-software/CMSIS-Driver/blob/b91908d907b647bd212920e30b383b03809d68e0/ETH/ETH_LAN91C111.h
3030
*/
3131

@@ -217,7 +217,7 @@
217217
#define MSK_TX_EMPTY 0x04 // Tx FIFO empty int. mask
218218
#define MSK_TX_INT 0x02 // Tx Complete int. mask
219219
#define MSK_RCV 0x01 // Rx Complete int. mask
220-
220+
221221
/* PHY Management Interface */
222222
#define MGMT_MSK_CRS100 0x0040 // Disables CRS100 detection in Tx Half Dup.
223223
#define MGMT_MDOE 0x0008 // MII - 1= MDO pin output, 0= MDO tristated

source/portable/NetworkInterface/MPS3_AN552/Device/Include/SSE300MPS3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* This file is a copy of
19+
/* This file is a copy of
2020
* https://gitlab.arm.com/iot/open-iot-sdk/arm-corstone-platform-bsp/-/blob/main/corstone300/Device/Include/SSE300MPS3.h
2121
*/
2222

source/portable/NetworkInterface/MPS3_AN552/Device/Include/cachel1_armv7.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* limitations under the License.
2525
*/
2626

27-
/* This file is a copy of
27+
/* This file is a copy of
2828
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Core/Include/cachel1_armv7.h
2929
*/
3030

source/portable/NetworkInterface/MPS3_AN552/Device/Include/cmsis_armclang.h

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

2727
/*lint -esym(9058, IRQn)*/ /* disable MISRA 2012 Rule 2.4 for IRQn */
2828

29-
/* This file is a copy of
29+
/* This file is a copy of
3030
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Core/Include/cmsis_armclang.h
3131
*/
3232

source/portable/NetworkInterface/MPS3_AN552/Device/Include/cmsis_compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* limitations under the License.
2525
*/
2626

27-
/* This file is a copy of
27+
/* This file is a copy of
2828
* https://github.com/ARM-software/CMSIS_5/blob/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3/CMSIS/Core/Include/cmsis_compiler.h
2929
*/
3030

0 commit comments

Comments
 (0)