arch/arm/src/sam34/sam_spi.c: Fix syslog formats
This commit is contained in:
parent
5461bb2462
commit
2829ecd18a
@ -42,6 +42,7 @@
|
|||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <inttypes.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -984,7 +985,7 @@ static uint32_t spi_setfrequency(struct spi_dev_s *dev, uint32_t frequency)
|
|||||||
uint32_t regval;
|
uint32_t regval;
|
||||||
unsigned int offset;
|
unsigned int offset;
|
||||||
|
|
||||||
spiinfo("cs=%d frequency=%d\n", spics->cs, frequency);
|
spiinfo("cs=%d frequency=%" PRId32 "\n", spics->cs, frequency);
|
||||||
|
|
||||||
/* Check if the requested frequency is the same as the frequency
|
/* Check if the requested frequency is the same as the frequency
|
||||||
* selection
|
* selection
|
||||||
@ -1057,14 +1058,15 @@ static uint32_t spi_setfrequency(struct spi_dev_s *dev, uint32_t frequency)
|
|||||||
/* Calculate the new actual frequency */
|
/* Calculate the new actual frequency */
|
||||||
|
|
||||||
actual = SAM_SPI_CLOCK / scbr;
|
actual = SAM_SPI_CLOCK / scbr;
|
||||||
spiinfo("csr[offset=%02x]=%08x actual=%d\n", offset, regval, actual);
|
spiinfo("csr[offset=%02x]=%08" PRIx32 " actual=%" PRId32 "\n",
|
||||||
|
offset, regval, actual);
|
||||||
|
|
||||||
/* Save the frequency setting */
|
/* Save the frequency setting */
|
||||||
|
|
||||||
spics->frequency = frequency;
|
spics->frequency = frequency;
|
||||||
spics->actual = actual;
|
spics->actual = actual;
|
||||||
|
|
||||||
spiinfo("Frequency %d->%d\n", frequency, actual);
|
spiinfo("Frequency %" PRId32 "->%" PRId32 "\n", frequency, actual);
|
||||||
return actual;
|
return actual;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1133,7 +1135,7 @@ static void spi_setmode(struct spi_dev_s *dev, enum spi_mode_e mode)
|
|||||||
}
|
}
|
||||||
|
|
||||||
spi_putreg(spi, regval, offset);
|
spi_putreg(spi, regval, offset);
|
||||||
spiinfo("csr[offset=%02x]=%08x\n", offset, regval);
|
spiinfo("csr[offset=%02x]=%08" PRIx32 "\n", offset, regval);
|
||||||
|
|
||||||
/* Save the mode so that subsequent re-configurations will be faster */
|
/* Save the mode so that subsequent re-configurations will be faster */
|
||||||
|
|
||||||
@ -1178,7 +1180,7 @@ static void spi_setbits(struct spi_dev_s *dev, int nbits)
|
|||||||
regval |= SPI_CSR_BITS(nbits);
|
regval |= SPI_CSR_BITS(nbits);
|
||||||
spi_putreg(spi, regval, offset);
|
spi_putreg(spi, regval, offset);
|
||||||
|
|
||||||
spiinfo("csr[offset=%02x]=%08x\n", offset, regval);
|
spiinfo("csr[offset=%02x]=%08" PRIx32 "\n", offset, regval);
|
||||||
|
|
||||||
/* Save the selection so the subsequent re-configurations will be
|
/* Save the selection so the subsequent re-configurations will be
|
||||||
* faster.
|
* faster.
|
||||||
@ -1905,7 +1907,7 @@ struct spi_dev_s *sam_spibus_initialize(int port)
|
|||||||
spi_putreg(spi, regval, offset);
|
spi_putreg(spi, regval, offset);
|
||||||
|
|
||||||
spics->nbits = 8;
|
spics->nbits = 8;
|
||||||
spiinfo("csr[offset=%02x]=%08x\n", offset, regval);
|
spiinfo("csr[offset=%02x]=%08" PRIx32 "\n", offset, regval);
|
||||||
|
|
||||||
return &spics->spidev;
|
return &spics->spidev;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user