1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/enc28j60/enc28j60.c: fix counter var length

This commit is contained in:
kYc0o 2017-10-26 00:41:09 +02:00
parent e017033601
commit 58e3fab133

View File

@ -43,7 +43,7 @@
* @brief If the clock is not stable after these amount of tries we abort the
* initialization
*/
#define STARTUP_TIMEOUT (1000U)
#define STARTUP_TIMEOUT (1000)
/**
* @brief Set SPI speed fixed to 10MHz
@ -256,7 +256,7 @@ static int nd_send(netdev_t *netdev, const struct iovec *data, unsigned count)
cmd_w_addr(dev, ADDR_WRITE_PTR, BUF_TX_START);
/* write control byte and the actual data into the buffer */
cmd_wbm(dev, &ctrl, 1);
for (int i = 0; i < count; i++) {
for (unsigned i = 0; i < count; i++) {
c += data[i].iov_len;
cmd_wbm(dev, (uint8_t *)data[i].iov_base, data[i].iov_len);
}
@ -320,7 +320,8 @@ static int nd_init(netdev_t *netdev)
/* setup the low-level interfaces */
gpio_init(dev->reset_pin, GPIO_OUT);
gpio_clear(dev->reset_pin); /* this puts the device into reset state */
if (spi_init_cs(dev->spi, dev->cs_pin) != SPI_OK) {
res = spi_init_cs(dev->spi, dev->cs_pin);
if (res != SPI_OK) {
DEBUG("[enc28j60] init: error initializing the CS pin [%i]\n", res);
return -1;
}