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:
gdisirio 2011-01-09 10:39:16 +00:00
parent 700b05269e
commit b4319d0aab
3 changed files with 2 additions and 12 deletions

View File

@ -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);

View File

@ -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()

View File

@ -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()