Skip to content

Commit

Permalink
treewide: Put a space between #include and FILE
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bolle <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
pebolle authored and Jiri Kosina committed Jun 28, 2012
1 parent 954bd6d commit 6ac7d11
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion arch/arm/plat-samsung/include/plat/gpio-cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef __PLAT_GPIO_CFG_H
#define __PLAT_GPIO_CFG_H __FILE__

#include<linux/types.h>
#include <linux/types.h>

typedef unsigned int __bitwise__ samsung_gpio_pull_t;
typedef unsigned int __bitwise__ s5p_gpio_drvstr_t;
Expand Down
2 changes: 1 addition & 1 deletion arch/ia64/kernel/ia64_ksyms.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ EXPORT_SYMBOL(memset);
EXPORT_SYMBOL(memcpy);
EXPORT_SYMBOL(strlen);

#include<asm/pgtable.h>
#include <asm/pgtable.h>
EXPORT_SYMBOL_GPL(empty_zero_page);

#include <asm/checksum.h>
Expand Down
6 changes: 3 additions & 3 deletions arch/ia64/kvm/vmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
*/


#include<linux/kernel.h>
#include<linux/module.h>
#include<asm/fpswa.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <asm/fpswa.h>

#include "vcpu.h"

Expand Down
6 changes: 3 additions & 3 deletions arch/parisc/include/asm/compat_rt_sigframe.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include<linux/compat.h>
#include<linux/compat_siginfo.h>
#include<asm/compat_ucontext.h>
#include <linux/compat.h>
#include <linux/compat_siginfo.h>
#include <asm/compat_ucontext.h>

#ifndef _ASM_PARISC_COMPAT_RT_SIGFRAME_H
#define _ASM_PARISC_COMPAT_RT_SIGFRAME_H
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/video/zoran/zr36016.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
/* v4l API */

/* headerfile of this module */
#include"zr36016.h"
#include "zr36016.h"

/* codec io API */
#include"videocodec.h"
#include "videocodec.h"

/* it doesn't make sense to have more than 20 or so,
just to prevent some unwanted loops */
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/iwlwifi/iwl-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <linux/device.h>

#include "iwl-io.h"
#include"iwl-csr.h"
#include "iwl-csr.h"
#include "iwl-debug.h"

#define IWL_POLL_INTERVAL 10 /* microseconds */
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/aha1542.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#define SCSI_BUF_PA(address) isa_virt_to_bus(address)
#define SCSI_SG_PA(sgent) (isa_page_to_bus(sg_page((sgent))) + (sgent)->offset)

#include<linux/stat.h>
#include <linux/stat.h>

#ifdef DEBUG
#define DEB(x) x
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/comedi/drivers/s626.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
#define INLINE static __inline
#endif

#include<linux/slab.h>
#include <linux/slab.h>

#define S626_SIZE 0x0200
#define SIZEOF_ADDRESS_SPACE 0x0200
Expand Down

0 comments on commit 6ac7d11

Please sign in to comment.