Refactor serial macro to the new name specs.
authorqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 6 Aug 2008 13:08:23 +0000 (13:08 +0000)
committerqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 6 Aug 2008 13:08:23 +0000 (13:08 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1557 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/ser.c
bertos/drv/ser.h

index c8ca15be17b1bf20a2ae355fc6c951fd5bde5840..0ab31aaa93e27437af693809ee903598eb295e8a 100644 (file)
@@ -210,7 +210,7 @@ int ser_getchar_nowait(struct Serial *fd)
  */
 static size_t ser_read(struct KFile *fd, void *_buf, size_t size)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
 
        size_t i = 0;
        char *buf = (char *)_buf;
@@ -235,7 +235,7 @@ static size_t ser_read(struct KFile *fd, void *_buf, size_t size)
  */
 static size_t ser_write(struct KFile *fd, const void *_buf, size_t size)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
        const char *buf = (const char *)_buf;
        size_t i = 0;
 
@@ -298,13 +298,13 @@ void ser_setparity(struct Serial *fd, int parity)
 
 static int ser_error(struct KFile *fd)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
        return ser_getstatus(fds);
 }
 
 static void ser_clearerr(struct KFile *fd)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
        ser_setstatus(fds, 0);
 }
 
@@ -346,7 +346,7 @@ void ser_purgeTx(struct Serial *fd)
  */
 static int ser_flush(struct KFile *fd)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
 
        /*
         * Wait until the FIFO becomes empty, and then until the byte currently in
@@ -411,7 +411,7 @@ static struct Serial *ser_open(struct Serial *fd, unsigned int unit)
  */
 static int ser_close(struct KFile *fd)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
        Serial *port = fds;
 
        ASSERT(port->is_open);
@@ -436,7 +436,7 @@ static int ser_close(struct KFile *fd)
  */
 static struct KFile *ser_reopen(struct KFile *fd)
 {
-       Serial *fds = SERIALKFILE(fd);
+       Serial *fds = SERIAL(fd);
 
        ser_close(fd);
        ser_open(fds, fds->unit);
@@ -469,7 +469,7 @@ void ser_init(struct Serial *fds, unsigned int unit)
  */
 static size_t spimaster_read(struct KFile *fd, void *_buf, size_t size)
 {
-       Serial *fd_spi = SERIALKFILE(fd);
+       Serial *fd_spi = SERIAL(fd);
 
        ser_flush(&fd_spi->fd);
        ser_purgeRx(fd_spi);
@@ -500,7 +500,7 @@ static size_t spimaster_read(struct KFile *fd, void *_buf, size_t size)
  */
 static size_t spimaster_write(struct KFile *fd, const void *buf, size_t size)
 {
-       Serial *fd_spi = SERIALKFILE(fd);
+       Serial *fd_spi = SERIAL(fd);
 
        ser_purgeRx(fd_spi);
 
index 0acf4b811d9d2804b096799fabb2511e21ce7158..568725734c26a04338189c6b1d4e1aa3b4222754 100644 (file)
@@ -162,7 +162,7 @@ typedef struct Serial
 #define KFT_SERIAL MAKE_ID('S', 'E', 'R', 'L')
 
 
-INLINE Serial * SERIALKFILE(KFile *fd)
+INLINE Serial * SERIAL(KFile *fd)
 {
        ASSERT(fd->_type == KFT_SERIAL);
        return (Serial *)fd;