Private
Public Access
2
0

maa: change complex C++ write calls to CamelCase for spi & i2c

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-06-24 14:42:24 +01:00
parent 2664d7c0e0
commit 79d0da4853
5 changed files with 8 additions and 8 deletions

View File

@@ -85,7 +85,7 @@ class I2c {
*
* @return Char read from the bus
*/
unsigned char read_byte() {
unsigned char readByte() {
return (unsigned char) maa_i2c_read_byte(m_i2c);
}
/**
@@ -127,7 +127,7 @@ class I2c {
* @param data The byte to send on the bus
* @return Result of operation
*/
maa_result_t write_byte(const unsigned char data) {
maa_result_t write(const unsigned char data) {
return maa_i2c_write_byte(m_i2c, data);
}
private: