summaryrefslogtreecommitdiffstats
path: root/spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'spi.c')
-rw-r--r--spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/spi.c b/spi.c
index 43dc4bf..952952f 100644
--- a/spi.c
+++ b/spi.c
@@ -832,7 +832,7 @@ int spi_write_status_register(int status)
return result;
}
-int spi_byte_program(int addr, uint8_t byte)
+int spi_byte_program(int addr, uint8_t databyte)
{
int result;
struct spi_command cmds[] = {
@@ -843,7 +843,7 @@ int spi_byte_program(int addr, uint8_t byte)
.readarr = NULL,
}, {
.writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE,
- .writearr = (const unsigned char[]){ JEDEC_BYTE_PROGRAM, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff), byte },
+ .writearr = (const unsigned char[]){ JEDEC_BYTE_PROGRAM, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff), databyte },
.readcnt = 0,
.readarr = NULL,
}, {
OpenPOWER on IntegriCloud