drivers/net/fsl_ucc: Do not prefix header guard with CONFIG_
The CONFIG_ prefix should only be used for options which can be configured through Kconfig and not for guarding headers. Signed-off-by: Andreas Ziegler <andreas.ziegler@fau.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
707a2ca487
commit
c57397670f
|
@ -8,8 +8,8 @@
|
|||
* option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_UCC_HDLC_H
|
||||
#define CONFIG_UCC_HDLC_H
|
||||
#ifndef _UCC_HDLC_H_
|
||||
#define _UCC_HDLC_H_
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/list.h>
|
||||
|
|
Loading…
Reference in New Issue