summaryrefslogtreecommitdiffstats
path: root/src/include/console.h
diff options
context:
space:
mode:
authorMichael Brown2005-05-24 02:11:25 +0200
committerMichael Brown2005-05-24 02:11:25 +0200
commit0e494614b569e3e25ea11a5a5a08310f82de0911 (patch)
treefef576480462b7a8b259609d1915a91e1a6e520b /src/include/console.h
parentFixes for gcc >= 3.2 from Georg Baum (diff)
downloadipxe-0e494614b569e3e25ea11a5a5a08310f82de0911.tar.gz
ipxe-0e494614b569e3e25ea11a5a5a08310f82de0911.tar.xz
ipxe-0e494614b569e3e25ea11a5a5a08310f82de0911.zip
Some versions of doxygen seem to object to "@ret None" or similar.
Diffstat (limited to 'src/include/console.h')
-rw-r--r--src/include/console.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/console.h b/src/include/console.h
index e5b5cb4f..9e13293a 100644
--- a/src/include/console.h
+++ b/src/include/console.h
@@ -43,17 +43,17 @@ struct console_driver {
/** Write a character to the console.
*
* @v character Character to be written
- * @ret None
- * @err None
+ * @ret None -
+ * @err None -
*
*/
void ( *putchar ) ( int character );
/** Read a character from the console.
*
- * @v None
+ * @v None -
* @ret character Character read
- * @err None
+ * @err None -
*
* If no character is available to be read, this method will
* block. The character read should not be echoed back to the
@@ -64,10 +64,10 @@ struct console_driver {
/** Check for available input.
*
- * @v None
+ * @v None -
* @ret True Input is available
* @ret False Input is not available
- * @err None
+ * @err None -
*
* This should return True if a subsequent call to getchar()
* will not block.