diff options
| author | Srinivas Girigowda <sgirigow@codeaurora.org> | 2016-12-01 15:04:22 -0800 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2017-01-25 16:00:14 -0800 |
| commit | f8baf8fff7cc79b21c66041c8740937fbbbc11ca (patch) | |
| tree | 034271ca47cb88664c9836716c5dc3edd81e2389 | |
| parent | 9bfa28b972f7371dd42214018826c9a02b1dc267 (diff) | |
qcacmn: Fix header include bug
This is a qcacld-2.0 to qcacld-3.0 propagation.
In file ar9888def.h error: '_AR9888DEF_H_' is used as a header guard here,
followed by #define of a different macro [-Werror,-Wheader-guard]
ar9888def.h: note: 'AR9888__AR9888DEF_H_' is defined here; did you mean '_AR9888DEF_H_'?
Fix the header file include guard properly.
Change-Id: Ic05a829eadbf974598370c494a5cff10201ec600
CRs-Fixed: 1091052
| -rw-r--r-- | hif/src/ar9888def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hif/src/ar9888def.h b/hif/src/ar9888def.h index 9e291cc407c3..1ebe643d746e 100644 --- a/hif/src/ar9888def.h +++ b/hif/src/ar9888def.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2016 The Linux Foundation. All rights reserved. + * Copyright (c) 2011-2017 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -26,7 +26,7 @@ */ #ifndef _AR9888DEF_H_ -#define AR9888__AR9888DEF_H_ +#define _AR9888DEF_H_ /* Base Addresses */ #define AR9888_RTC_SOC_BASE_ADDRESS 0x00004000 |
