From 5052c1fc4ec98aee492d449e853febc1a2b09d40 Mon Sep 17 00:00:00 2001 From: qwert Date: Wed, 6 Aug 2008 13:08:23 +0000 Subject: [PATCH] Refactor serial macro to the new name specs. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1557 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/drv/ser.c | 18 +++++++++--------- bertos/drv/ser.h | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bertos/drv/ser.c b/bertos/drv/ser.c index c8ca15be..0ab31aaa 100644 --- a/bertos/drv/ser.c +++ b/bertos/drv/ser.c @@ -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); diff --git a/bertos/drv/ser.h b/bertos/drv/ser.h index 0acf4b81..56872573 100644 --- a/bertos/drv/ser.h +++ b/bertos/drv/ser.h @@ -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; -- 2.25.1