diff options
| author | Govind Singh <govinds@codeaurora.org> | 2016-06-09 18:29:42 +0530 |
|---|---|---|
| committer | Nandini Suresh <snandini@codeaurora.org> | 2016-07-08 06:12:10 -0700 |
| commit | 5b48620c0393be3e3a55e49a46f7ada31f57d6c5 (patch) | |
| tree | 068c48ce2693931eb090a990a4a221a75b9a42cf /uapi/linux/osapi_linux.h | |
| parent | 8c46db975927eb8b4bd6b315d31c7658249bbd21 (diff) | |
qcacld-3.0: Add host changes for latest fw common changes
FW common files needs to be in sync with host and fw.
Add changes to compile successfully with latest version
of FW interface file.
Change-Id: I487a18185c406da5c2fb07e2a95cafe4793578aa
CRs-Fixed: 1012542
Diffstat (limited to 'uapi/linux/osapi_linux.h')
| -rw-r--r-- | uapi/linux/osapi_linux.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/uapi/linux/osapi_linux.h b/uapi/linux/osapi_linux.h index 221c1a4b0d4f..77de5272aac2 100644 --- a/uapi/linux/osapi_linux.h +++ b/uapi/linux/osapi_linux.h @@ -57,10 +57,16 @@ #define __ATTRIB_PACK __attribute__ ((packed)) #define __ATTRIB_PRINTF __attribute__ ((format (printf, 1, 2))) #define __ATTRIB_NORETURN __attribute__ ((noreturn)) +#ifndef INLINE +#define INLINE __inline__ +#endif #else /* Not GCC */ #define __ATTRIB_PACK #define __ATTRIB_PRINTF #define __ATTRIB_NORETURN +#ifndef INLINE +#define INLINE __inline +#endif #endif /* End __GNUC__ */ #define PREPACK |
