u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [PATCH] xilinx: common: Fix static checker warnings
@ 2022-09-26  6:52 Venkatesh Yadav Abbarapu
  2022-10-04 12:28 ` Michal Simek
  0 siblings, 1 reply; 2+ messages in thread
From: Venkatesh Yadav Abbarapu @ 2022-09-26  6:52 UTC (permalink / raw)
  To: u-boot; +Cc: michal.simek, git

Avoid signed extension for uuid and byte.

Eliminate the below smatch warnings:
board/xilinx/common/board.c:128 xilinx_eeprom_legacy_cleanup()
warn: impossible condition '(byte == 255) => ((-128)-127 == 255)'

board/xilinx/common/board.c:466 board_late_init_xilinx()
warn: argument 3 to %02x specifier has type 'char'
board/xilinx/common/board.c:466 board_late_init_xilinx()
warn: argument 4 to %02x specifier has type 'char'

Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>
---

 board/xilinx/common/board.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c
index 9b4aded466..2b6ead5269 100644
--- a/board/xilinx/common/board.c
+++ b/board/xilinx/common/board.c
@@ -119,7 +119,7 @@ struct xilinx_legacy_format {
 static void xilinx_eeprom_legacy_cleanup(char *eeprom, int size)
 {
 	int i;
-	char byte;
+	unsigned char byte;
 
 	for (i = 0; i < size; i++) {
 		byte = eeprom[i];
@@ -458,8 +458,8 @@ int board_late_init_xilinx(void)
 							desc->serial);
 
 			if (desc->uuid[0]) {
-				char uuid[UUID_STR_LEN + 1];
-				char *t = desc->uuid;
+				unsigned char uuid[UUID_STR_LEN + 1];
+				unsigned char *t = desc->uuid;
 
 				memset(uuid, 0, UUID_STR_LEN + 1);
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] xilinx: common: Fix static checker warnings
  2022-09-26  6:52 [PATCH] xilinx: common: Fix static checker warnings Venkatesh Yadav Abbarapu
@ 2022-10-04 12:28 ` Michal Simek
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Simek @ 2022-10-04 12:28 UTC (permalink / raw)
  To: Venkatesh Yadav Abbarapu, u-boot; +Cc: git



On 9/26/22 08:52, Venkatesh Yadav Abbarapu wrote:
> Avoid signed extension for uuid and byte.
> 
> Eliminate the below smatch warnings:
> board/xilinx/common/board.c:128 xilinx_eeprom_legacy_cleanup()
> warn: impossible condition '(byte == 255) => ((-128)-127 == 255)'
> 
> board/xilinx/common/board.c:466 board_late_init_xilinx()
> warn: argument 3 to %02x specifier has type 'char'
> board/xilinx/common/board.c:466 board_late_init_xilinx()
> warn: argument 4 to %02x specifier has type 'char'
> 
> Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>
> ---
> 
>   board/xilinx/common/board.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c
> index 9b4aded466..2b6ead5269 100644
> --- a/board/xilinx/common/board.c
> +++ b/board/xilinx/common/board.c
> @@ -119,7 +119,7 @@ struct xilinx_legacy_format {
>   static void xilinx_eeprom_legacy_cleanup(char *eeprom, int size)
>   {
>   	int i;
> -	char byte;
> +	unsigned char byte;
>   
>   	for (i = 0; i < size; i++) {
>   		byte = eeprom[i];
> @@ -458,8 +458,8 @@ int board_late_init_xilinx(void)
>   							desc->serial);
>   
>   			if (desc->uuid[0]) {
> -				char uuid[UUID_STR_LEN + 1];
> -				char *t = desc->uuid;
> +				unsigned char uuid[UUID_STR_LEN + 1];
> +				unsigned char *t = desc->uuid;
>   
>   				memset(uuid, 0, UUID_STR_LEN + 1);
>   

Applied.
M

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-04 12:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-26  6:52 [PATCH] xilinx: common: Fix static checker warnings Venkatesh Yadav Abbarapu
2022-10-04 12:28 ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).