aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/include/asm/kdebug.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-11-18 10:37:38 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-11-18 10:37:38 -0500
commit78db1caa8ae4e549ffc0bbf0f9b52c113e9a4da0 (patch)
treebdc364ede8c0fba63f0eacdcb7aaf2efcf4f0bca /arch/mips/include/asm/kdebug.h
parent978b4053aefd422713f289f2a315ce2acba62018 (diff)
parentd94c7bd4c1361cab58a21d530078c5673863dcc2 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6: tty: cp210x: Fix carrier handling tty_port: If we are opened non blocking we still need to raise the carrier
Diffstat (limited to 'arch/mips/include/asm/kdebug.h')
0 files changed, 0 insertions, 0 deletions
span>((unsigned long)ptr); } static inline long IS_ERR_OR_NULL(const void *ptr) { return !ptr || IS_ERR_VALUE((unsigned long)ptr); } /** * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type * @ptr: The pointer to cast. * * Explicitly cast an error-valued pointer to another pointer type in such a * way as to make it clear that's what's going on. */ static inline void *ERR_CAST(const void *ptr) { /* cast away the const */ return (void *) ptr; } #endif #endif /* _LINUX_ERR_H */