Private
Public Access
2
0

periphmraa: Rename B* -> A*

Fixes compilation issues introduced earlier

Signed-off-by: Sanrio Alvares <sanrio.alvares@intel.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Sanrio Alvares
2017-02-07 03:03:37 -08:00
committed by Noel Eck
parent c4555bc4e5
commit e607beedda

View File

@@ -131,7 +131,7 @@ struct _gpio {
#endif #endif
/*@}*/ /*@}*/
#ifdef PERIPHERALMAN #ifdef PERIPHERALMAN
BGpio *bgpio; AGpio *bgpio;
#endif #endif
}; };
@@ -153,7 +153,7 @@ struct _i2c {
#endif #endif
/*@}*/ /*@}*/
#ifdef PERIPHERALMAN #ifdef PERIPHERALMAN
BI2cDevice *bi2c; AI2cDevice *bi2c;
char bus_name[256]; char bus_name[256];
#endif #endif
}; };
@@ -171,7 +171,7 @@ struct _spi {
mraa_adv_func_t* advance_func; /**< override function table */ mraa_adv_func_t* advance_func; /**< override function table */
/*@}*/ /*@}*/
#ifdef PERIPHERALMAN #ifdef PERIPHERALMAN
BSpiDevice *bspi; ASpiDevice *bspi;
#endif #endif
}; };
@@ -212,7 +212,7 @@ struct _uart {
mraa_adv_func_t* advance_func; /**< override function table */ mraa_adv_func_t* advance_func; /**< override function table */
/*@}*/ /*@}*/
#if defined(PERIPHERALMAN) #if defined(PERIPHERALMAN)
struct BUartDevice *buart; struct AUartDevice *buart;
#endif #endif
}; };