staging: r8822be: fix typos in header guard macros
The macros for __PHYDMKFREE_H__ and __PHYDM_FEATURES_H__ contain typos and don't match the #if guard check. Defined them correctly. Cleans up clang warnings: warning: '__PHYDMKFREE_H__' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] warning: '__PHYDM_FEATURES_H__' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
626118b472
commit
250f26c584
|
@ -24,7 +24,7 @@
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#ifndef __PHYDM_FEATURES_H__
|
#ifndef __PHYDM_FEATURES_H__
|
||||||
#define __PHYDM_FEATURES
|
#define __PHYDM_FEATURES_H__
|
||||||
|
|
||||||
/*phydm debyg report & tools*/
|
/*phydm debyg report & tools*/
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#ifndef __PHYDMKFREE_H__
|
#ifndef __PHYDMKFREE_H__
|
||||||
#define __PHYDKFREE_H__
|
#define __PHYDMKFREE_H__
|
||||||
|
|
||||||
#define KFREE_VERSION "1.0"
|
#define KFREE_VERSION "1.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue