[PATCH 2/2] cpukit/dev/can: Fix 64 bit build compilation warnings

2022-12-03 Thread Prashanth S
--- cpukit/dev/can/can.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/dev/can/can.c b/cpukit/dev/can/can.c index 7098ce16c2..2462df7e25 100644 --- a/cpukit/dev/can/can.c +++ b/cpukit/dev/can/can.c @@ -204,7 +204,7 @@ static ssize_t can_bus_read(rtems_libio_t *iop, voi

[PATCH 1/2] testsuites/libtests/can01: Serialize CAN write and read messages among the tasks

2022-12-03 Thread Prashanth S
The CAN framework has minimal Rx implementation, so to test loopback driver the test application is modified to write and read atomically --- testsuites/libtests/can01/init.c | 71 ++-- 1 file changed, 31 insertions(+), 40 deletions(-) diff --git a/testsuites/libtests/

[PATCH 2/4] cpukit/dev/can: Removed extra debug prints in CAN Framework

2022-12-03 Thread Prashanth S
--- cpukit/dev/can/can.c | 20 1 file changed, 20 deletions(-) diff --git a/cpukit/dev/can/can.c b/cpukit/dev/can/can.c index 2e6d5df65b..7098ce16c2 100644 --- a/cpukit/dev/can/can.c +++ b/cpukit/dev/can/can.c @@ -73,19 +73,14 @@ static int try_sem(struct can_bus *); static

[PATCH 1/4] cpukit/include/dev/can: Added debug print configuration under RTEMS_CAN_DEBUG macro.

2022-12-03 Thread Prashanth S
--- cpukit/include/dev/can/can.h | 27 +-- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/cpukit/include/dev/can/can.h b/cpukit/include/dev/can/can.h index 9e55395039..4ee51ebc9d 100644 --- a/cpukit/include/dev/can/can.h +++ b/cpukit/include/dev/can/can.h @@