/*#*
*#* $Log$
+ *#* Revision 1.34 2006/11/20 15:07:40 batt
+ *#* Revert unneeded locked functions.
+ *#*
*#* Revision 1.33 2006/11/17 18:15:55 batt
*#* Avoid race conditions.
*#*
fifo_flush_locked(&port->txfifo);
}
-/**
- * Get status of port \c port.
- */
-serstatus_t ser_getstatus(struct Serial *port)
-{
- serstatus_t status;
- ATOMIC(status = port->status);
-
- return status;
-}
-
-
-/**
- * Set new \c port status.
- */
-void ser_setstatus(struct Serial *port, serstatus_t status)
-{
- ATOMIC(port->status = status);
-}
-
/**
* Wait until all pending output is completely
/*#*
*#* $Log$
+ *#* Revision 1.34 2006/11/20 15:07:40 batt
+ *#* Revert unneeded locked functions.
+ *#*
*#* Revision 1.33 2006/11/17 17:03:58 batt
*#* Implement ser_setstatus and ser_getstatus as functions to avoid race conditions.
*#*
extern struct Serial *ser_open(unsigned int unit);
extern void ser_close(struct Serial *port);
-extern serstatus_t ser_getstatus(struct Serial *port);
-extern void ser_setstatus(struct Serial *port, serstatus_t status);
+/**
+ * \name Additional functions implemented as macros
+ *
+ * \{
+ */
+#define ser_getstatus(h) ((h)->status)
+#define ser_setstatus(h, x) ((h)->status = (x))
+/* \} */
#endif /* DRV_SER_H */