diff options
| author | Anastasia Klimchuk <aklm@chromium.org> | 2023-01-17 16:20:53 +1100 | 
|---|---|---|
| committer | Anastasia Klimchuk <aklm@chromium.org> | 2023-01-18 20:59:24 +0000 | 
| commit | 87531ef11c00963100f20fac71c2428f54162916 (patch) | |
| tree | 766a309de9d77d9291aa3c2c6edbf553c713a8ae /tests | |
| parent | 3d76865fd50ab9b28f367ed27b19d8746548cdb1 (diff) | |
| download | flashrom-87531ef11c00963100f20fac71c2428f54162916.tar.gz flashrom-87531ef11c00963100f20fac71c2428f54162916.tar.bz2 flashrom-87531ef11c00963100f20fac71c2428f54162916.zip | |
tests: Fix warnings for 32-bit Linux
Unit tests had int-to-pointer-cast warnings for 32-bit Linux
environment, and since warnings are treated as errors this
failed build with unit tests.
Ticket: https://ticket.coreboot.org/issues/407
Change-Id: I9ec5d37cc038171afc67a69ea9a6885deb8fa4a8
Tested-By: Branden Waldner <scruffy99@gmail.com>
Signed-off-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/72038
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Alexander Goncharov <chat@joursoir.net>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/linux_spi.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tests/linux_spi.c b/tests/linux_spi.c index 10096345..1b653fef 100644 --- a/tests/linux_spi.c +++ b/tests/linux_spi.c @@ -23,14 +23,14 @@ static int linux_spi_ioctl(void *state, int fd, unsigned long request, va_list a  		/* First message has write array and write count */  		unsigned int writecnt = msg[0].len; -		unsigned char *writearr = (unsigned char *)msg[0].tx_buf; +		unsigned char *writearr = (unsigned char *)(uintptr_t)msg[0].tx_buf;  		/* Second message has read array and read count */  		unsigned int readcnt = msg[1].len;  		/* Detect probing */  		if (writecnt == 1 && writearr[0] == JEDEC_RDID && readcnt == 3) {  			/* We need to populate read array. */ -			unsigned char *readarr = (unsigned char *)msg[1].rx_buf; +			unsigned char *readarr = (unsigned char *)(uintptr_t)msg[1].rx_buf;  			readarr[0] = 0xEF; /* WINBOND_NEX_ID */  			readarr[1] = 0x40; /* WINBOND_NEX_W25Q128_V left byte */  			readarr[2] = 0x18; /* WINBOND_NEX_W25Q128_V right byte */ | 
