Commit e9945457 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: remove old doxygen comments from timskmod.h

Remove doxygen comments and fix what's left so it's still useful.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 32b6b291
...@@ -71,7 +71,6 @@ ...@@ -71,7 +71,6 @@
/** Try to evaulate the provided expression, and do a RETINT(x) iff /** Try to evaulate the provided expression, and do a RETINT(x) iff
* the expression evaluates to < 0. * the expression evaluates to < 0.
* @param x the expression to try
*/ */
#define ASSERT(cond) \ #define ASSERT(cond) \
do { if (!(cond)) \ do { if (!(cond)) \
...@@ -89,11 +88,6 @@ ...@@ -89,11 +88,6 @@
(void *)(p2) = SWAPPOINTERS_TEMP; \ (void *)(p2) = SWAPPOINTERS_TEMP; \
} while (0) } while (0)
/**
* @addtogroup driverlogging
* @{
*/
#define PRINTKDRV(fmt, args...) LOGINF(fmt, ## args) #define PRINTKDRV(fmt, args...) LOGINF(fmt, ## args)
#define TBDDRV(fmt, args...) LOGERR(fmt, ## args) #define TBDDRV(fmt, args...) LOGERR(fmt, ## args)
#define HUHDRV(fmt, args...) LOGERR(fmt, ## args) #define HUHDRV(fmt, args...) LOGERR(fmt, ## args)
...@@ -114,8 +108,6 @@ ...@@ -114,8 +108,6 @@
#define INFODEVX(devno, fmt, args...) LOGINFDEVX(devno, fmt, ## args) #define INFODEVX(devno, fmt, args...) LOGINFDEVX(devno, fmt, ## args)
#define DEBUGDEV(devname, fmt, args...) DBGINFDEV(devname, fmt, ## args) #define DEBUGDEV(devname, fmt, args...) DBGINFDEV(devname, fmt, ## args)
/* @} */
/** Verifies the consistency of your PRIVATEDEVICEDATA structure using /** Verifies the consistency of your PRIVATEDEVICEDATA structure using
* conventional "signature" fields: * conventional "signature" fields:
* <p> * <p>
...@@ -139,7 +131,7 @@ ...@@ -139,7 +131,7 @@
((fd)->sig2 == fd)) ((fd)->sig2 == fd))
/** Sleep for an indicated number of seconds (for use in kernel mode). /** Sleep for an indicated number of seconds (for use in kernel mode).
* @param x the number of seconds to sleep. * x - the number of seconds to sleep.
*/ */
#define SLEEP(x) \ #define SLEEP(x) \
do { current->state = TASK_INTERRUPTIBLE; \ do { current->state = TASK_INTERRUPTIBLE; \
...@@ -147,7 +139,7 @@ ...@@ -147,7 +139,7 @@
} while (0) } while (0)
/** Sleep for an indicated number of jiffies (for use in kernel mode). /** Sleep for an indicated number of jiffies (for use in kernel mode).
* @param x the number of jiffies to sleep. * x - the number of jiffies to sleep.
*/ */
#define SLEEPJIFFIES(x) \ #define SLEEPJIFFIES(x) \
do { current->state = TASK_INTERRUPTIBLE; \ do { current->state = TASK_INTERRUPTIBLE; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment