Commit 3dd1247f4dee214a92b42e17818703ea71233288

Authored by Robert P. J. Day
Committed by Linus Torvalds
1 parent 9cfe015aa4

synclink: standardize format of linux header file include's with "<>"

Use the recommended form of "<>" to include linux header files, and
move those includes up to join the rest of the linux includes.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Acked-by: Paul Fulghum <paulkf@microgate.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 4 changed files with 4 additions and 8 deletions Side-by-side Diff

drivers/char/pcmcia/synclink_cs.c
... ... @@ -57,6 +57,7 @@
57 57 #include <linux/init.h>
58 58 #include <linux/delay.h>
59 59 #include <linux/ioctl.h>
  60 +#include <linux/synclink.h>
60 61  
61 62 #include <asm/system.h>
62 63 #include <asm/io.h>
... ... @@ -86,8 +87,6 @@
86 87 #define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
87 88  
88 89 #include <asm/uaccess.h>
89   -
90   -#include "linux/synclink.h"
91 90  
92 91 static MGSL_PARAMS default_params = {
93 92 MGSL_MODE_HDLC, /* unsigned long mode */
drivers/char/synclink.c
... ... @@ -85,6 +85,7 @@
85 85 #include <linux/vmalloc.h>
86 86 #include <linux/init.h>
87 87 #include <linux/ioctl.h>
  88 +#include <linux/synclink.h>
88 89  
89 90 #include <asm/system.h>
90 91 #include <asm/io.h>
... ... @@ -109,8 +110,6 @@
109 110 #define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
110 111  
111 112 #include <asm/uaccess.h>
112   -
113   -#include "linux/synclink.h"
114 113  
115 114 #define RCLRVALUE 0xffff
116 115  
drivers/char/synclink_gt.c
... ... @@ -73,6 +73,7 @@
73 73 #include <linux/bitops.h>
74 74 #include <linux/workqueue.h>
75 75 #include <linux/hdlc.h>
  76 +#include <linux/synclink.h>
76 77  
77 78 #include <asm/system.h>
78 79 #include <asm/io.h>
... ... @@ -80,8 +81,6 @@
80 81 #include <asm/dma.h>
81 82 #include <asm/types.h>
82 83 #include <asm/uaccess.h>
83   -
84   -#include "linux/synclink.h"
85 84  
86 85 #if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_GT_MODULE))
87 86 #define SYNCLINK_GENERIC_HDLC 1
drivers/char/synclinkmp.c
... ... @@ -66,6 +66,7 @@
66 66 #include <linux/termios.h>
67 67 #include <linux/workqueue.h>
68 68 #include <linux/hdlc.h>
  69 +#include <linux/synclink.h>
69 70  
70 71 #if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINKMP_MODULE))
71 72 #define SYNCLINK_GENERIC_HDLC 1
... ... @@ -79,8 +80,6 @@
79 80 #define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
80 81  
81 82 #include <asm/uaccess.h>
82   -
83   -#include "linux/synclink.h"
84 83  
85 84 static MGSL_PARAMS default_params = {
86 85 MGSL_MODE_HDLC, /* unsigned long mode */