1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

Fix I2C success mask

This commit is contained in:
Michael Scire 2018-02-23 22:03:13 -08:00
parent 56f5b56235
commit 672d76cb31

View file

@ -71,7 +71,7 @@ int i2c_write(unsigned int device, uint32_t val, unsigned int num_bytes) {
}
/* Return CMD1_STAT == SL1_XFER_SUCCESSFUL. */
return (I2C_I2C_STATUS_0 & 7) == 0;
return (I2C_I2C_STATUS_0 & 0xF) == 0;
}
/* Writes a byte val to reg for given device. */