summaryrefslogtreecommitdiff
path: root/drivers/staging/dgnc/dgnc_pci.h
diff options
context:
space:
mode:
authorTobin C. Harding <me@tobin.cc>2017-03-28 10:28:36 +1100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-29 09:37:10 +0200
commit2539fc0c7c7b0dcb076a4bceafff4fb64091b2c2 (patch)
treea2260442bea846d7ec195e81b00a8b43364fbd32 /drivers/staging/dgnc/dgnc_pci.h
parente14047e4e3b54a988411a0fea207c9bb69c13711 (diff)
downloadlinux-2539fc0c7c7b0dcb076a4bceafff4fb64091b2c2.tar.gz
linux-2539fc0c7c7b0dcb076a4bceafff4fb64091b2c2.tar.xz
staging: dgnc: remove double underscore
Pre-processor header guards use double underscore, typically kernel code uses single underscore when defining header guards. 'endif' statement should include what is ending as a comment string. Remove double underscore, add comment string to 'endif' Signed-off-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/dgnc/dgnc_pci.h')
-rw-r--r--drivers/staging/dgnc/dgnc_pci.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/dgnc/dgnc_pci.h b/drivers/staging/dgnc/dgnc_pci.h
index 4d6fc4aebb69..59845916d90c 100644
--- a/drivers/staging/dgnc/dgnc_pci.h
+++ b/drivers/staging/dgnc/dgnc_pci.h
@@ -13,8 +13,8 @@
* PURPOSE. See the GNU General Public License for more details.
*/
-#ifndef __DGNC_PCI_H
-#define __DGNC_PCI_H
+#ifndef _DGNC_PCI_H
+#define _DGNC_PCI_H
/* Maximum number of PCI boards */
#define PCIMAX 32
@@ -66,4 +66,4 @@
/* Size of memory (2MB) */
#define PCI_MEM_SIZE 0x1000
-#endif
+#endif /* _DGNC_PCI_H */