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:
Andreas Ziegler 2016-06-08 11:40:28 +02:00 committed by David S. Miller
parent 707a2ca487
commit c57397670f
1 changed files with 2 additions and 2 deletions

View File

@ -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>