Skip to content

Commit

Permalink
silence pedantic new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
scaprile committed Mar 25, 2024
1 parent d3fe1ef commit 19cc777
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mongoose.c
Original file line number Diff line number Diff line change
Expand Up @@ -14825,7 +14825,7 @@ static uint16_t smi_rd(uint16_t header) {
pir = 0; // read, mdc = 0
ETHERC->PIR = pir;
raspin(s_smispin / 2); // 1/4 clock period, 300ns max access time
data |= ETHERC->PIR & MG_BIT(3) ? 1 : 0; // read mdio
data |= ETHERC->PIR & MG_BIT(3) ? 1U : 0; // read mdio
raspin(s_smispin / 2); // 1/4 clock period
pir |= MG_BIT(0); // mdc = 1
ETHERC->PIR = pir;
Expand All @@ -14835,11 +14835,11 @@ static uint16_t smi_rd(uint16_t header) {
}

static uint16_t raeth_read_phy(uint8_t addr, uint8_t reg) {
return smi_rd((1 << 14) | (2 << 12) | (addr << 7) | (reg << 2) | (2 << 0));
return smi_rd((1U << 14) | (2U << 12) | (addr << 7) | (reg << 2) | (2U << 0));
}

static void raeth_write_phy(uint8_t addr, uint8_t reg, uint16_t val) {
smi_wr((1 << 14) | (1 << 12) | (addr << 7) | (reg << 2) | (2 << 0), val);
smi_wr((1U << 14) | (1U << 12) | (addr << 7) | (reg << 2) | (2U << 0), val);
}

// MDC clock is generated manually; as per 802.3, it must not exceed 2.5MHz
Expand Down
6 changes: 3 additions & 3 deletions src/drivers/ra.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static uint16_t smi_rd(uint16_t header) {
pir = 0; // read, mdc = 0
ETHERC->PIR = pir;
raspin(s_smispin / 2); // 1/4 clock period, 300ns max access time
data |= ETHERC->PIR & MG_BIT(3) ? 1 : 0; // read mdio
data |= ETHERC->PIR & MG_BIT(3) ? 1U : 0; // read mdio
raspin(s_smispin / 2); // 1/4 clock period
pir |= MG_BIT(0); // mdc = 1
ETHERC->PIR = pir;
Expand All @@ -111,11 +111,11 @@ static uint16_t smi_rd(uint16_t header) {
}

static uint16_t raeth_read_phy(uint8_t addr, uint8_t reg) {
return smi_rd((1 << 14) | (2 << 12) | (addr << 7) | (reg << 2) | (2 << 0));
return smi_rd((1U << 14) | (2U << 12) | (addr << 7) | (reg << 2) | (2U << 0));
}

static void raeth_write_phy(uint8_t addr, uint8_t reg, uint16_t val) {
smi_wr((1 << 14) | (1 << 12) | (addr << 7) | (reg << 2) | (2 << 0), val);
smi_wr((1U << 14) | (1U << 12) | (addr << 7) | (reg << 2) | (2U << 0), val);
}

// MDC clock is generated manually; as per 802.3, it must not exceed 2.5MHz
Expand Down

0 comments on commit 19cc777

Please sign in to comment.