Removed some instances of sdflags_t.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2627 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
700b05269e
commit
b4319d0aab
|
@ -169,7 +169,7 @@ static void termination_handler(eventid_t id) {
|
|||
* @param[in] id event id.
|
||||
*/
|
||||
static void sd1_handler(eventid_t id) {
|
||||
sdflags_t flags;
|
||||
ioflags_t flags;
|
||||
|
||||
(void)id;
|
||||
flags = chIOGetAndClearFlags(&SD1);
|
||||
|
@ -191,7 +191,7 @@ static void sd1_handler(eventid_t id) {
|
|||
* @param[in] id event id.
|
||||
*/
|
||||
static void sd2_handler(eventid_t id) {
|
||||
sdflags_t flags;
|
||||
ioflags_t flags;
|
||||
|
||||
(void)id;
|
||||
flags = chIOGetAndClearFlags(&SD2);
|
||||
|
|
|
@ -95,11 +95,6 @@
|
|||
/* Driver data structures and types. */
|
||||
/*===========================================================================*/
|
||||
|
||||
/**
|
||||
* @brief Serial Driver condition flags type.
|
||||
*/
|
||||
typedef uint32_t sdflags_t;
|
||||
|
||||
/**
|
||||
* @brief LPC214x Serial Driver configuration structure.
|
||||
* @details An instance of this structure must be passed to @p sdStart()
|
||||
|
|
|
@ -46,11 +46,6 @@
|
|||
/* Driver data structures and types. */
|
||||
/*===========================================================================*/
|
||||
|
||||
/**
|
||||
* @brief Serial Driver condition flags type.
|
||||
*/
|
||||
typedef uint8_t sdflags_t;
|
||||
|
||||
/**
|
||||
* @brief Generic Serial Driver configuration structure.
|
||||
* @details An instance of this structure must be passed to @p sdStart()
|
||||
|
|
Loading…
Reference in New Issue