mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 03:15:23 +07:00
1337650935
For all uapi headers, need use "_UAPI" prefix for its guard macro (which will be stripped by "scripts/headers_installer.sh"). Also be sure that all files have their guard macros. Also be sure that all "#endif" are followed with comments, and no '\t' for guard macro Signed-off-by: Chen Gang <gang.chen@asianux.com>
17 lines
272 B
C
17 lines
272 B
C
/*
|
|
* Copyright 2004-2009 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*
|
|
*/
|
|
|
|
#ifndef _UAPI__BFIN_POLL_H
|
|
#define _UAPI__BFIN_POLL_H
|
|
|
|
#define POLLWRNORM 4 /* POLLOUT */
|
|
#define POLLWRBAND 256
|
|
|
|
#include <asm-generic/poll.h>
|
|
|
|
#endif /* _UAPI__BFIN_POLL_H */
|