Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'uapi-prep-20121002' of git://git.infradead.org/users/dhowells/linux-headers

Pull preparatory patches for user API disintegration from David Howells:
"The patches herein prepare for the extraction of the Userspace API
bits from the various header files named in the Kbuild files.

New subdirectories are created under either include/uapi/ or
arch/x/include/uapi/ that correspond to the subdirectory containing
that file under include/ or arch/x/include/.

The new subdirs under the uapi/ directory are populated with Kbuild
files that mostly do nothing at this time. Further patches will
disintegrate the headers in each original directory and fill in the
Kbuild files as they do it.

These patches also:

(1) fix up #inclusions of "foo.h" rather than <foo.h>.

(2) Remove some redundant #includes from the DRM code.

(3) Make the kernel build infrastructure handle Kbuild files both in
the old places and the new UAPI place that both specify headers
to be exported.

(4) Fix some kernel tools that #include kernel headers during their
build.

I have compile tested this with allyesconfig against x86_64,
allmodconfig against i386 and a scattering of additional defconfigs of
other arches. Prepared for main script

Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Kerrisk <mtk.manpages@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Dave Jones <davej@redhat.com>
Acked-by: H. Peter Anvin <hpa@zytor.com>"

* tag 'uapi-prep-20121002' of git://git.infradead.org/users/dhowells/linux-headers:
UAPI: Plumb the UAPI Kbuilds into the user header installation and checking
UAPI: x86: Differentiate the generated UAPI and internal headers
UAPI: Remove the objhdr-y export list
UAPI: Move linux/version.h
UAPI: Set up uapi/asm/Kbuild.asm
UAPI: x86: Fix insn_sanity build failure after UAPI split
UAPI: x86: Fix the test_get_len tool
UAPI: (Scripted) Set up UAPI Kbuild files
UAPI: Partition the header include path sets and add uapi/ header directories
UAPI: (Scripted) Convert #include "..." to #include <path/...> in kernel system headers
UAPI: (Scripted) Convert #include "..." to #include <path/...> in drivers/gpu/
UAPI: (Scripted) Remove redundant DRM UAPI header #inclusions from drivers/gpu/.
UAPI: Refer to the DRM UAPI headers with <...> and from certain headers only

+1397 -1325
+4 -4
Documentation/kbuild/makefiles.txt
··· 45 45 46 46 === 7 Kbuild syntax for exported headers 47 47 --- 7.1 header-y 48 - --- 7.2 objhdr-y 48 + --- 7.2 genhdr-y 49 49 --- 7.3 destination-y 50 50 --- 7.4 generic-y 51 51 ··· 1282 1282 1283 1283 Subdirectories are visited before their parent directories. 1284 1284 1285 - --- 7.2 objhdr-y 1285 + --- 7.2 genhdr-y 1286 1286 1287 - objhdr-y specifies generated files to be exported. 1287 + genhdr-y specifies generated files to be exported. 1288 1288 Generated files are special as they need to be looked 1289 1289 up in another directory when doing 'make O=...' builds. 1290 1290 1291 1291 Example: 1292 1292 #include/linux/Kbuild 1293 - objhdr-y += version.h 1293 + genhdr-y += version.h 1294 1294 1295 1295 --- 7.3 destination-y 1296 1296
+27 -16
Makefile
··· 350 350 CFLAGS_GCOV = -fprofile-arcs -ftest-coverage 351 351 352 352 353 + # Use USERINCLUDE when you must reference the UAPI directories only. 354 + USERINCLUDE := \ 355 + -I$(srctree)/arch/$(hdr-arch)/include/uapi \ 356 + -Iarch/$(hdr-arch)/include/generated/uapi \ 357 + -I$(srctree)/include/uapi \ 358 + -Iinclude/generated/uapi \ 359 + -include $(srctree)/include/linux/kconfig.h 360 + 353 361 # Use LINUXINCLUDE when you must reference the include/ directory. 354 362 # Needed to be compatible with the O= option 355 - LINUXINCLUDE := -I$(srctree)/arch/$(hdr-arch)/include \ 356 - -Iarch/$(hdr-arch)/include/generated -Iinclude \ 357 - $(if $(KBUILD_SRC), -I$(srctree)/include) \ 358 - -include $(srctree)/include/linux/kconfig.h 363 + LINUXINCLUDE := \ 364 + -I$(srctree)/arch/$(hdr-arch)/include \ 365 + -Iarch/$(hdr-arch)/include/generated \ 366 + $(if $(KBUILD_SRC), -I$(srctree)/include) \ 367 + -Iinclude \ 368 + $(USERINCLUDE) 359 369 360 370 KBUILD_CPPFLAGS := -D__KERNEL__ 361 371 ··· 447 437 # Detect when mixed targets is specified, and make a second invocation 448 438 # of make so .config is not included in this case either (for *config). 449 439 440 + version_h := include/generated/uapi/linux/version.h 441 + 450 442 no-dot-config-targets := clean mrproper distclean \ 451 443 cscope gtags TAGS tags help %docs check% coccicheck \ 452 - include/linux/version.h headers_% archheaders archscripts \ 444 + $(version_h) headers_% archheaders archscripts \ 453 445 kernelversion %src-pkg 454 446 455 447 config-targets := 0 ··· 821 809 # prepare2 creates a makefile if using a separate output directory 822 810 prepare2: prepare3 outputmakefile asm-generic 823 811 824 - prepare1: prepare2 include/linux/version.h include/generated/utsrelease.h \ 812 + prepare1: prepare2 $(version_h) include/generated/utsrelease.h \ 825 813 include/config/auto.conf 826 814 $(cmd_crmodverdir) 827 815 ··· 854 842 echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';) 855 843 endef 856 844 857 - include/linux/version.h: $(srctree)/Makefile FORCE 845 + $(version_h): $(srctree)/Makefile FORCE 858 846 $(call filechk,version.h) 859 847 860 848 include/generated/utsrelease.h: include/config/kernel.release FORCE ··· 899 887 archscripts: 900 888 901 889 PHONY += __headers 902 - __headers: include/linux/version.h scripts_basic asm-generic archheaders archscripts FORCE 890 + __headers: $(version_h) scripts_basic asm-generic archheaders archscripts FORCE 903 891 $(Q)$(MAKE) $(build)=scripts build_unifdef 904 892 905 893 PHONY += headers_install_all ··· 908 896 909 897 PHONY += headers_install 910 898 headers_install: __headers 911 - $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild),, \ 912 - $(error Headers not exportable for the $(SRCARCH) architecture)) 913 - $(Q)$(MAKE) $(hdr-inst)=include 914 - $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) 899 + $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/uapi/asm/Kbuild),, \ 900 + $(error Headers not exportable for the $(SRCARCH) architecture)) 901 + $(Q)$(MAKE) $(hdr-inst)=include/uapi 902 + $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) 915 903 916 904 PHONY += headers_check_all 917 905 headers_check_all: headers_install_all ··· 919 907 920 908 PHONY += headers_check 921 909 headers_check: headers_install 922 - $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 923 - $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) HDRCHECK=1 910 + $(Q)$(MAKE) $(hdr-inst)=include/uapi HDRCHECK=1 911 + $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) HDRCHECK=1 924 912 925 913 # --------------------------------------------------------------------------- 926 914 # Modules ··· 1009 997 # Directories & files removed with 'make mrproper' 1010 998 MRPROPER_DIRS += include/config usr/include include/generated \ 1011 999 arch/*/include/generated 1012 - MRPROPER_FILES += .config .config.old .version .old_version \ 1013 - include/linux/version.h \ 1000 + MRPROPER_FILES += .config .config.old .version .old_version $(version_h) \ 1014 1001 Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS 1015 1002 1016 1003 # clean - Delete most, but leave enough to build external modules
+3
arch/alpha/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+1 -1
arch/arm/include/asm/page.h
··· 19 19 20 20 #ifndef CONFIG_MMU 21 21 22 - #include "page-nommu.h" 22 + #include <asm/page-nommu.h> 23 23 24 24 #else 25 25
+1 -1
arch/arm/include/asm/pgtable.h
··· 16 16 #ifndef CONFIG_MMU 17 17 18 18 #include <asm-generic/4level-fixup.h> 19 - #include "pgtable-nommu.h" 19 + #include <asm/pgtable-nommu.h> 20 20 21 21 #else 22 22
+1 -1
arch/arm/include/asm/vfpmacros.h
··· 5 5 */ 6 6 #include <asm/hwcap.h> 7 7 8 - #include "vfp.h" 8 + #include <asm/vfp.h> 9 9 10 10 @ Macros to allow building with old toolkits (with no VFP support) 11 11 .macro VFPFMRX, rd, sysreg, cond
+3
arch/arm/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/arm64/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/avr32/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/blackfin/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/c6x/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3 -1
arch/cris/Makefile
··· 23 23 24 24 ifneq ($(arch-y),) 25 25 SARCH := arch-$(arch-y) 26 - inc := -Iarch/cris/include/$(SARCH) 26 + inc := -Iarch/cris/include/uapi/$(SARCH) 27 + inc += -Iarch/cris/include/$(SARCH) 28 + inc += -Iarch/cris/include/uapi/$(SARCH)/arch 27 29 inc += -Iarch/cris/include/$(SARCH)/arch 28 30 else 29 31 SARCH :=
+1 -1
arch/cris/include/arch-v10/arch/sv_addr_ag.h
··· 114 114 115 115 /*------------------------------------------------------------*/ 116 116 117 - #include "sv_addr.agh" 117 + #include <arch/sv_addr.agh> 118 118 119 119 #if __test_sv_addr__ 120 120 /* IO_MASK( R_BUS_CONFIG , CE ) */
+1 -1
arch/cris/include/arch-v10/arch/svinto.h
··· 1 1 #ifndef _ASM_CRIS_SVINTO_H 2 2 #define _ASM_CRIS_SVINTO_H 3 3 4 - #include "sv_addr_ag.h" 4 + #include <arch/sv_addr_ag.h> 5 5 6 6 extern unsigned int genconfig_shadow; /* defined and set in head.S */ 7 7
+1 -1
arch/cris/include/arch-v32/arch/dma.h
··· 1 - #include "mach/dma.h" 1 + #include <mach/dma.h>
+1 -1
arch/cris/include/arch-v32/arch/hwregs/dma.h
··· 7 7 #define dma_h 8 8 9 9 /* registers */ /* Really needed, since both are listed in sw.list? */ 10 - #include "dma_defs.h" 10 + #include <arch/hwregs/dma_defs.h> 11 11 12 12 13 13 /* descriptors */
+1
arch/cris/include/uapi/arch-v10/arch/Kbuild
··· 1 + # UAPI Header export list
+1
arch/cris/include/uapi/arch-v32/arch/Kbuild
··· 1 + # UAPI Header export list
+5
arch/cris/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 + 4 + header-y += arch-v10/ 5 + header-y += arch-v32/
+3
arch/frv/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/h8300/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/hexagon/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/ia64/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/m32r/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+2 -2
arch/m68k/include/asm/cacheflush.h
··· 1 1 #ifdef __uClinux__ 2 - #include "cacheflush_no.h" 2 + #include <asm/cacheflush_no.h> 3 3 #else 4 - #include "cacheflush_mm.h" 4 + #include <asm/cacheflush_mm.h> 5 5 #endif
+2 -2
arch/m68k/include/asm/io.h
··· 1 1 #ifdef __uClinux__ 2 - #include "io_no.h" 2 + #include <asm/io_no.h> 3 3 #else 4 - #include "io_mm.h" 4 + #include <asm/io_mm.h> 5 5 #endif
+4 -4
arch/m68k/include/asm/m68360.h
··· 1 - #include "m68360_regs.h" 2 - #include "m68360_pram.h" 3 - #include "m68360_quicc.h" 4 - #include "m68360_enet.h" 1 + #include <asm/m68360_regs.h> 2 + #include <asm/m68360_pram.h> 3 + #include <asm/m68360_quicc.h> 4 + #include <asm/m68360_enet.h> 5 5 6 6 #ifdef CONFIG_M68360 7 7
+1 -1
arch/m68k/include/asm/m68360_enet.h
··· 10 10 #ifndef __ETHER_H 11 11 #define __ETHER_H 12 12 13 - #include "quicc_simple.h" 13 + #include <asm/quicc_simple.h> 14 14 15 15 /* 16 16 * transmit BD's
+2 -2
arch/m68k/include/asm/page.h
··· 43 43 #endif /* !__ASSEMBLY__ */ 44 44 45 45 #ifdef CONFIG_MMU 46 - #include "page_mm.h" 46 + #include <asm/page_mm.h> 47 47 #else 48 - #include "page_no.h" 48 + #include <asm/page_no.h> 49 49 #endif 50 50 51 51 #include <asm-generic/getorder.h>
+2 -2
arch/m68k/include/asm/pgtable.h
··· 1 1 #ifdef __uClinux__ 2 - #include "pgtable_no.h" 2 + #include <asm/pgtable_no.h> 3 3 #else 4 - #include "pgtable_mm.h" 4 + #include <asm/pgtable_mm.h> 5 5 #endif
+1 -1
arch/m68k/include/asm/q40_master.h
··· 60 60 #define Q40_RTC_WRITE 128 61 61 62 62 /* define some Q40 specific ints */ 63 - #include "q40ints.h" 63 + #include <asm/q40ints.h> 64 64 65 65 /* misc defs */ 66 66 #define DAC_LEFT ((unsigned char *)0xff008000)
+2 -2
arch/m68k/include/asm/uaccess.h
··· 1 1 #ifdef __uClinux__ 2 - #include "uaccess_no.h" 2 + #include <asm/uaccess_no.h> 3 3 #else 4 - #include "uaccess_mm.h" 4 + #include <asm/uaccess_mm.h> 5 5 #endif
+3
arch/m68k/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+1 -1
arch/microblaze/include/asm/mmu_context.h
··· 1 1 #ifdef CONFIG_MMU 2 - # include "mmu_context_mm.h" 2 + # include <asm/mmu_context_mm.h> 3 3 #else 4 4 # include <asm-generic/mmu_context.h> 5 5 #endif
+3
arch/microblaze/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+1 -1
arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h
··· 1 1 #ifndef BCM63XX_IO_H_ 2 2 #define BCM63XX_IO_H_ 3 3 4 - #include "bcm63xx_cpu.h" 4 + #include <asm/mach-bcm63xx/bcm63xx_cpu.h> 5 5 6 6 /* 7 7 * Physical memory map, RAM is mapped at 0x0.
+1 -1
arch/mips/include/asm/mach-pnx833x/gpio.h
··· 30 30 - including locking between different uses 31 31 */ 32 32 33 - #include "pnx833x.h" 33 + #include <asm/mach-pnx833x/pnx833x.h> 34 34 35 35 #define SET_REG_BIT(reg, bit) do { (reg |= (1 << (bit))); } while (0) 36 36 #define CLEAR_REG_BIT(reg, bit) do { (reg &= ~(1 << (bit))); } while (0)
+1 -1
arch/mips/include/asm/octeon/cvmx-asm.h
··· 32 32 #ifndef __CVMX_ASM_H__ 33 33 #define __CVMX_ASM_H__ 34 34 35 - #include "octeon-model.h" 35 + #include <asm/octeon/octeon-model.h> 36 36 37 37 /* other useful stuff */ 38 38 #define CVMX_SYNC asm volatile ("sync" : : : "memory")
+1 -1
arch/mips/include/asm/octeon/cvmx-cmd-queue.h
··· 76 76 77 77 #include <linux/prefetch.h> 78 78 79 - #include "cvmx-fpa.h" 79 + #include <asm/octeon/cvmx-fpa.h> 80 80 /** 81 81 * By default we disable the max depth support. Most programs 82 82 * don't use it and it slows down the command queue processing
+2 -2
arch/mips/include/asm/octeon/cvmx-fpa.h
··· 36 36 #ifndef __CVMX_FPA_H__ 37 37 #define __CVMX_FPA_H__ 38 38 39 - #include "cvmx-address.h" 40 - #include "cvmx-fpa-defs.h" 39 + #include <asm/octeon/cvmx-address.h> 40 + #include <asm/octeon/cvmx-fpa-defs.h> 41 41 42 42 #define CVMX_FPA_NUM_POOLS 8 43 43 #define CVMX_FPA_MIN_BLOCK_SIZE 128
+1 -1
arch/mips/include/asm/octeon/cvmx-helper-board.h
··· 34 34 #ifndef __CVMX_HELPER_BOARD_H__ 35 35 #define __CVMX_HELPER_BOARD_H__ 36 36 37 - #include "cvmx-helper.h" 37 + #include <asm/octeon/cvmx-helper.h> 38 38 39 39 typedef enum { 40 40 set_phy_link_flags_autoneg = 0x1,
+10 -10
arch/mips/include/asm/octeon/cvmx-helper.h
··· 34 34 #ifndef __CVMX_HELPER_H__ 35 35 #define __CVMX_HELPER_H__ 36 36 37 - #include "cvmx-config.h" 38 - #include "cvmx-fpa.h" 39 - #include "cvmx-wqe.h" 37 + #include <asm/octeon/cvmx-config.h> 38 + #include <asm/octeon/cvmx-fpa.h> 39 + #include <asm/octeon/cvmx-wqe.h> 40 40 41 41 typedef enum { 42 42 CVMX_HELPER_INTERFACE_MODE_DISABLED, ··· 62 62 } cvmx_helper_link_info_t; 63 63 64 64 #include <asm/octeon/cvmx-helper-errata.h> 65 - #include "cvmx-helper-loop.h" 66 - #include "cvmx-helper-npi.h" 67 - #include "cvmx-helper-rgmii.h" 68 - #include "cvmx-helper-sgmii.h" 69 - #include "cvmx-helper-spi.h" 70 - #include "cvmx-helper-util.h" 71 - #include "cvmx-helper-xaui.h" 65 + #include <asm/octeon/cvmx-helper-loop.h> 66 + #include <asm/octeon/cvmx-helper-npi.h> 67 + #include <asm/octeon/cvmx-helper-rgmii.h> 68 + #include <asm/octeon/cvmx-helper-sgmii.h> 69 + #include <asm/octeon/cvmx-helper-spi.h> 70 + #include <asm/octeon/cvmx-helper-util.h> 71 + #include <asm/octeon/cvmx-helper-xaui.h> 72 72 73 73 /** 74 74 * cvmx_override_pko_queue_priority(int ipd_port, uint64_t
+1 -1
arch/mips/include/asm/octeon/cvmx-mdio.h
··· 35 35 #ifndef __CVMX_MIO_H__ 36 36 #define __CVMX_MIO_H__ 37 37 38 - #include "cvmx-smix-defs.h" 38 + #include <asm/octeon/cvmx-smix-defs.h> 39 39 40 40 /** 41 41 * PHY register 0 from the 802.3 spec
+3 -3
arch/mips/include/asm/octeon/cvmx-pip.h
··· 33 33 #ifndef __CVMX_PIP_H__ 34 34 #define __CVMX_PIP_H__ 35 35 36 - #include "cvmx-wqe.h" 37 - #include "cvmx-fpa.h" 38 - #include "cvmx-pip-defs.h" 36 + #include <asm/octeon/cvmx-wqe.h> 37 + #include <asm/octeon/cvmx-fpa.h> 38 + #include <asm/octeon/cvmx-pip-defs.h> 39 39 40 40 #define CVMX_PIP_NUM_INPUT_PORTS 40 41 41 #define CVMX_PIP_NUM_WATCHERS 4
+4 -4
arch/mips/include/asm/octeon/cvmx-pko.h
··· 58 58 #ifndef __CVMX_PKO_H__ 59 59 #define __CVMX_PKO_H__ 60 60 61 - #include "cvmx-fpa.h" 62 - #include "cvmx-pow.h" 63 - #include "cvmx-cmd-queue.h" 64 - #include "cvmx-pko-defs.h" 61 + #include <asm/octeon/cvmx-fpa.h> 62 + #include <asm/octeon/cvmx-pow.h> 63 + #include <asm/octeon/cvmx-cmd-queue.h> 64 + #include <asm/octeon/cvmx-pko-defs.h> 65 65 66 66 /* Adjust the command buffer size by 1 word so that in the case of using only 67 67 * two word PKO commands no command words stradle buffers. The useful values
+2 -2
arch/mips/include/asm/octeon/cvmx-pow.h
··· 53 53 54 54 #include <asm/octeon/cvmx-pow-defs.h> 55 55 56 - #include "cvmx-scratch.h" 57 - #include "cvmx-wqe.h" 56 + #include <asm/octeon/cvmx-scratch.h> 57 + #include <asm/octeon/cvmx-wqe.h> 58 58 59 59 /* Default to having all POW constancy checks turned on */ 60 60 #ifndef CVMX_ENABLE_POW_CHECKS
+1 -1
arch/mips/include/asm/octeon/cvmx-spi.h
··· 32 32 #ifndef __CVMX_SPI_H__ 33 33 #define __CVMX_SPI_H__ 34 34 35 - #include "cvmx-gmxx-defs.h" 35 + #include <asm/octeon/cvmx-gmxx-defs.h> 36 36 37 37 /* CSR typedefs have been moved to cvmx-csr-*.h */ 38 38
+1 -1
arch/mips/include/asm/octeon/cvmx-spinlock.h
··· 35 35 #ifndef __CVMX_SPINLOCK_H__ 36 36 #define __CVMX_SPINLOCK_H__ 37 37 38 - #include "cvmx-asm.h" 38 + #include <asm/octeon/cvmx-asm.h> 39 39 40 40 /* Spinlocks for Octeon */ 41 41
+1 -1
arch/mips/include/asm/octeon/cvmx-wqe.h
··· 40 40 #ifndef __CVMX_WQE_H__ 41 41 #define __CVMX_WQE_H__ 42 42 43 - #include "cvmx-packet.h" 43 + #include <asm/octeon/cvmx-packet.h> 44 44 45 45 46 46 #define OCT_TAG_TYPE_STRING(x) \
+16 -16
arch/mips/include/asm/octeon/cvmx.h
··· 52 52 #define CVMX_ADD_IO_SEG(add) CVMX_ADD_SEG(CVMX_IO_SEG, (add)) 53 53 #endif 54 54 55 - #include "cvmx-asm.h" 56 - #include "cvmx-packet.h" 57 - #include "cvmx-sysinfo.h" 55 + #include <asm/octeon/cvmx-asm.h> 56 + #include <asm/octeon/cvmx-packet.h> 57 + #include <asm/octeon/cvmx-sysinfo.h> 58 58 59 - #include "cvmx-ciu-defs.h" 60 - #include "cvmx-gpio-defs.h" 61 - #include "cvmx-iob-defs.h" 62 - #include "cvmx-ipd-defs.h" 63 - #include "cvmx-l2c-defs.h" 64 - #include "cvmx-l2d-defs.h" 65 - #include "cvmx-l2t-defs.h" 66 - #include "cvmx-led-defs.h" 67 - #include "cvmx-mio-defs.h" 68 - #include "cvmx-pow-defs.h" 59 + #include <asm/octeon/cvmx-ciu-defs.h> 60 + #include <asm/octeon/cvmx-gpio-defs.h> 61 + #include <asm/octeon/cvmx-iob-defs.h> 62 + #include <asm/octeon/cvmx-ipd-defs.h> 63 + #include <asm/octeon/cvmx-l2c-defs.h> 64 + #include <asm/octeon/cvmx-l2d-defs.h> 65 + #include <asm/octeon/cvmx-l2t-defs.h> 66 + #include <asm/octeon/cvmx-led-defs.h> 67 + #include <asm/octeon/cvmx-mio-defs.h> 68 + #include <asm/octeon/cvmx-pow-defs.h> 69 69 70 - #include "cvmx-bootinfo.h" 71 - #include "cvmx-bootmem.h" 72 - #include "cvmx-l2c.h" 70 + #include <asm/octeon/cvmx-bootinfo.h> 71 + #include <asm/octeon/cvmx-bootmem.h> 72 + #include <asm/octeon/cvmx-l2c.h> 73 73 74 74 #ifndef CVMX_ENABLE_DEBUG_PRINTS 75 75 #define CVMX_ENABLE_DEBUG_PRINTS 1
+1 -1
arch/mips/include/asm/octeon/octeon-model.h
··· 313 313 const char *octeon_model_get_string(uint32_t chip_id); 314 314 const char *octeon_model_get_string_buffer(uint32_t chip_id, char *buffer); 315 315 316 - #include "octeon-feature.h" 316 + #include <asm/octeon/octeon-feature.h> 317 317 318 318 #endif /* __OCTEON_MODEL_H__ */
+1 -1
arch/mips/include/asm/octeon/octeon.h
··· 8 8 #ifndef __ASM_OCTEON_OCTEON_H 9 9 #define __ASM_OCTEON_OCTEON_H 10 10 11 - #include "cvmx.h" 11 + #include <asm/octeon/cvmx.h> 12 12 13 13 extern uint64_t octeon_bootmem_alloc_range_phys(uint64_t size, 14 14 uint64_t alignment,
+1 -1
arch/mips/include/asm/sibyte/bcm1480_int.h
··· 34 34 #ifndef _BCM1480_INT_H 35 35 #define _BCM1480_INT_H 36 36 37 - #include "sb1250_defs.h" 37 + #include <asm/sibyte/sb1250_defs.h> 38 38 39 39 /* ********************************************************************* 40 40 * Interrupt Mapper Constants
+1 -1
arch/mips/include/asm/sibyte/bcm1480_l2c.h
··· 33 33 #ifndef _BCM1480_L2C_H 34 34 #define _BCM1480_L2C_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* 39 39 * Format of level 2 cache management address (Table 55)
+1 -1
arch/mips/include/asm/sibyte/bcm1480_mc.h
··· 33 33 #ifndef _BCM1480_MC_H 34 34 #define _BCM1480_MC_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* 39 39 * Memory Channel Configuration Register (Table 81)
+2 -2
arch/mips/include/asm/sibyte/bcm1480_regs.h
··· 32 32 #ifndef _BCM1480_REGS_H 33 33 #define _BCM1480_REGS_H 34 34 35 - #include "sb1250_defs.h" 35 + #include <asm/sibyte/sb1250_defs.h> 36 36 37 37 /* ********************************************************************* 38 38 * Pull in the BCM1250's registers since a great deal of the 1480's 39 39 * functions are the same as the BCM1250. 40 40 ********************************************************************* */ 41 41 42 - #include "sb1250_regs.h" 42 + #include <asm/sibyte/sb1250_regs.h> 43 43 44 44 45 45 /* *********************************************************************
+2 -2
arch/mips/include/asm/sibyte/bcm1480_scd.h
··· 32 32 #ifndef _BCM1480_SCD_H 33 33 #define _BCM1480_SCD_H 34 34 35 - #include "sb1250_defs.h" 35 + #include <asm/sibyte/sb1250_defs.h> 36 36 37 37 /* ********************************************************************* 38 38 * Pull in the BCM1250's SCD since lots of stuff is the same. 39 39 ********************************************************************* */ 40 40 41 - #include "sb1250_scd.h" 41 + #include <asm/sibyte/sb1250_scd.h> 42 42 43 43 /* ********************************************************************* 44 44 * Some general notes:
+1 -1
arch/mips/include/asm/sibyte/sb1250_dma.h
··· 36 36 #define _SB1250_DMA_H 37 37 38 38 39 - #include "sb1250_defs.h" 39 + #include <asm/sibyte/sb1250_defs.h> 40 40 41 41 /* ********************************************************************* 42 42 * DMA Registers
+1 -1
arch/mips/include/asm/sibyte/sb1250_genbus.h
··· 34 34 #ifndef _SB1250_GENBUS_H 35 35 #define _SB1250_GENBUS_H 36 36 37 - #include "sb1250_defs.h" 37 + #include <asm/sibyte/sb1250_defs.h> 38 38 39 39 /* 40 40 * Generic Bus Region Configuration Registers (Table 11-4)
+1 -1
arch/mips/include/asm/sibyte/sb1250_int.h
··· 33 33 #ifndef _SB1250_INT_H 34 34 #define _SB1250_INT_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* ********************************************************************* 39 39 * Interrupt Mapper Constants
+1 -1
arch/mips/include/asm/sibyte/sb1250_l2c.h
··· 33 33 #ifndef _SB1250_L2C_H 34 34 #define _SB1250_L2C_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* 39 39 * Level 2 Cache Tag register (Table 5-3)
+1 -1
arch/mips/include/asm/sibyte/sb1250_ldt.h
··· 33 33 #ifndef _SB1250_LDT_H 34 34 #define _SB1250_LDT_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 #define K_LDT_VENDOR_SIBYTE 0x166D 39 39 #define K_LDT_DEVICE_SB1250 0x0002
+1 -1
arch/mips/include/asm/sibyte/sb1250_mac.h
··· 33 33 #ifndef _SB1250_MAC_H 34 34 #define _SB1250_MAC_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* ********************************************************************* 39 39 * Ethernet MAC Registers
+1 -1
arch/mips/include/asm/sibyte/sb1250_mc.h
··· 33 33 #ifndef _SB1250_MC_H 34 34 #define _SB1250_MC_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* 39 39 * Memory Channel Config Register (table 6-14)
+1 -1
arch/mips/include/asm/sibyte/sb1250_regs.h
··· 33 33 #ifndef _SB1250_REGS_H 34 34 #define _SB1250_REGS_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 39 39 /* *********************************************************************
+1 -1
arch/mips/include/asm/sibyte/sb1250_scd.h
··· 32 32 #ifndef _SB1250_SCD_H 33 33 #define _SB1250_SCD_H 34 34 35 - #include "sb1250_defs.h" 35 + #include <asm/sibyte/sb1250_defs.h> 36 36 37 37 /* ********************************************************************* 38 38 * System control/debug registers
+1 -1
arch/mips/include/asm/sibyte/sb1250_smbus.h
··· 34 34 #ifndef _SB1250_SMBUS_H 35 35 #define _SB1250_SMBUS_H 36 36 37 - #include "sb1250_defs.h" 37 + #include <asm/sibyte/sb1250_defs.h> 38 38 39 39 /* 40 40 * SMBus Clock Frequency Register (Table 14-2)
+1 -1
arch/mips/include/asm/sibyte/sb1250_syncser.h
··· 33 33 #ifndef _SB1250_SYNCSER_H 34 34 #define _SB1250_SYNCSER_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* 39 39 * Serial Mode Configuration Register
+1 -1
arch/mips/include/asm/sibyte/sb1250_uart.h
··· 33 33 #ifndef _SB1250_UART_H 34 34 #define _SB1250_UART_H 35 35 36 - #include "sb1250_defs.h" 36 + #include <asm/sibyte/sb1250_defs.h> 37 37 38 38 /* ********************************************************************** 39 39 * DUART Registers
+3
arch/mips/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/mn10300/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/openrisc/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/parisc/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+1 -1
arch/powerpc/include/asm/ps3.h
··· 24 24 #include <linux/init.h> 25 25 #include <linux/types.h> 26 26 #include <linux/device.h> 27 - #include "cell-pmu.h" 27 + #include <asm/cell-pmu.h> 28 28 29 29 union ps3_firmware_version { 30 30 u64 raw;
+1 -1
arch/powerpc/include/asm/ucc_fast.h
··· 19 19 #include <asm/immap_qe.h> 20 20 #include <asm/qe.h> 21 21 22 - #include "ucc.h" 22 + #include <asm/ucc.h> 23 23 24 24 /* Receive BD's status */ 25 25 #define R_E 0x80000000 /* buffer empty */
+1 -1
arch/powerpc/include/asm/ucc_slow.h
··· 20 20 #include <asm/immap_qe.h> 21 21 #include <asm/qe.h> 22 22 23 - #include "ucc.h" 23 + #include <asm/ucc.h> 24 24 25 25 /* transmit BD's status */ 26 26 #define T_R 0x80000000 /* ready bit */
+3
arch/powerpc/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/s390/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3
arch/score/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+2 -2
arch/sh/include/asm/bl_bit.h
··· 2 2 #define __ASM_SH_BL_BIT_H 3 3 4 4 #ifdef CONFIG_SUPERH32 5 - # include "bl_bit_32.h" 5 + # include <asm/bl_bit_32.h> 6 6 #else 7 - # include "bl_bit_64.h" 7 + # include <asm/bl_bit_64.h> 8 8 #endif 9 9 10 10 #endif /* __ASM_SH_BL_BIT_H */
+2 -2
arch/sh/include/asm/cache_insns.h
··· 3 3 4 4 5 5 #ifdef CONFIG_SUPERH32 6 - # include "cache_insns_32.h" 6 + # include <asm/cache_insns_32.h> 7 7 #else 8 - # include "cache_insns_64.h" 8 + # include <asm/cache_insns_64.h> 9 9 #endif 10 10 11 11 #endif /* __ASM_SH_CACHE_INSNS_H */
+1 -1
arch/sh/include/asm/checksum.h
··· 1 1 #ifdef CONFIG_SUPERH32 2 - # include "checksum_32.h" 2 + # include <asm/checksum_32.h> 3 3 #else 4 4 # include <asm-generic/checksum.h> 5 5 #endif
+2 -2
arch/sh/include/asm/mmu_context.h
··· 46 46 #define MMU_VPN_MASK 0xfffff000 47 47 48 48 #if defined(CONFIG_SUPERH32) 49 - #include "mmu_context_32.h" 49 + #include <asm/mmu_context_32.h> 50 50 #else 51 - #include "mmu_context_64.h" 51 + #include <asm/mmu_context_64.h> 52 52 #endif 53 53 54 54 /*
+4 -4
arch/sh/include/asm/posix_types.h
··· 1 1 #ifdef __KERNEL__ 2 2 # ifdef CONFIG_SUPERH32 3 - # include "posix_types_32.h" 3 + # include <asm/posix_types_32.h> 4 4 # else 5 - # include "posix_types_64.h" 5 + # include <asm/posix_types_64.h> 6 6 # endif 7 7 #else 8 8 # ifdef __SH5__ 9 - # include "posix_types_64.h" 9 + # include <asm/posix_types_64.h> 10 10 # else 11 - # include "posix_types_32.h" 11 + # include <asm/posix_types_32.h> 12 12 # endif 13 13 #endif /* __KERNEL__ */
+2 -2
arch/sh/include/asm/processor.h
··· 175 175 #endif /* __ASSEMBLY__ */ 176 176 177 177 #ifdef CONFIG_SUPERH32 178 - # include "processor_32.h" 178 + # include <asm/processor_32.h> 179 179 #else 180 - # include "processor_64.h" 180 + # include <asm/processor_64.h> 181 181 #endif 182 182 183 183 #endif /* __ASM_SH_PROCESSOR_H */
+2 -2
arch/sh/include/asm/ptrace.h
··· 25 25 #define PT_TEXT_LEN 252 26 26 27 27 #if defined(__SH5__) || defined(CONFIG_CPU_SH5) 28 - #include "ptrace_64.h" 28 + #include <asm/ptrace_64.h> 29 29 #else 30 - #include "ptrace_32.h" 30 + #include <asm/ptrace_32.h> 31 31 #endif 32 32 33 33 #ifdef __KERNEL__
+2 -2
arch/sh/include/asm/string.h
··· 1 1 #ifdef CONFIG_SUPERH32 2 - # include "string_32.h" 2 + # include <asm/string_32.h> 3 3 #else 4 - # include "string_64.h" 4 + # include <asm/string_64.h> 5 5 #endif
+2 -2
arch/sh/include/asm/switch_to.h
··· 11 11 #define __ASM_SH_SWITCH_TO_H 12 12 13 13 #ifdef CONFIG_SUPERH32 14 - # include "switch_to_32.h" 14 + # include <asm/switch_to_32.h> 15 15 #else 16 - # include "switch_to_64.h" 16 + # include <asm/switch_to_64.h> 17 17 #endif 18 18 19 19 #endif /* __ASM_SH_SWITCH_TO_H */
+2 -2
arch/sh/include/asm/syscall.h
··· 4 4 extern const unsigned long sys_call_table[]; 5 5 6 6 #ifdef CONFIG_SUPERH32 7 - # include "syscall_32.h" 7 + # include <asm/syscall_32.h> 8 8 #else 9 - # include "syscall_64.h" 9 + # include <asm/syscall_64.h> 10 10 #endif 11 11 12 12 #endif /* __ASM_SH_SYSCALL_H */
+2 -2
arch/sh/include/asm/syscalls.h
··· 11 11 unsigned long fd, unsigned long pgoff); 12 12 13 13 #ifdef CONFIG_SUPERH32 14 - # include "syscalls_32.h" 14 + # include <asm/syscalls_32.h> 15 15 #else 16 - # include "syscalls_64.h" 16 + # include <asm/syscalls_64.h> 17 17 #endif 18 18 19 19 #endif /* __KERNEL__ */
+1 -1
arch/sh/include/asm/tlb.h
··· 2 2 #define __ASM_SH_TLB_H 3 3 4 4 #ifdef CONFIG_SUPERH64 5 - # include "tlb_64.h" 5 + # include <asm/tlb_64.h> 6 6 #endif 7 7 8 8 #ifndef __ASSEMBLY__
+2 -2
arch/sh/include/asm/traps.h
··· 4 4 #include <linux/compiler.h> 5 5 6 6 #ifdef CONFIG_SUPERH32 7 - # include "traps_32.h" 7 + # include <asm/traps_32.h> 8 8 #else 9 - # include "traps_64.h" 9 + # include <asm/traps_64.h> 10 10 #endif 11 11 12 12 BUILD_TRAP_HANDLER(address_error);
+2 -2
arch/sh/include/asm/uaccess.h
··· 97 97 }) 98 98 99 99 #ifdef CONFIG_SUPERH32 100 - # include "uaccess_32.h" 100 + # include <asm/uaccess_32.h> 101 101 #else 102 - # include "uaccess_64.h" 102 + # include <asm/uaccess_64.h> 103 103 #endif 104 104 105 105 extern long strncpy_from_user(char *dest, const char __user *src, long count);
+4 -4
arch/sh/include/asm/unistd.h
··· 1 1 #ifdef __KERNEL__ 2 2 # ifdef CONFIG_SUPERH32 3 - # include "unistd_32.h" 3 + # include <asm/unistd_32.h> 4 4 # else 5 - # include "unistd_64.h" 5 + # include <asm/unistd_64.h> 6 6 # endif 7 7 8 8 # define __ARCH_WANT_SYS_RT_SIGSUSPEND ··· 40 40 41 41 #else 42 42 # ifdef __SH5__ 43 - # include "unistd_64.h" 43 + # include <asm/unistd_64.h> 44 44 # else 45 - # include "unistd_32.h" 45 + # include <asm/unistd_32.h> 46 46 # endif 47 47 #endif
+1 -1
arch/sh/include/mach-ecovec24/mach/romimage.h
··· 6 6 */ 7 7 8 8 #include <asm/romimage-macros.h> 9 - #include "partner-jet-setup.txt" 9 + #include <mach/partner-jet-setup.txt> 10 10 11 11 /* execute icbi after enabling cache */ 12 12 mov.l 1f, r0
+1 -1
arch/sh/include/mach-kfr2r09/mach/romimage.h
··· 6 6 */ 7 7 8 8 #include <asm/romimage-macros.h> 9 - #include "partner-jet-setup.txt" 9 + #include <mach/partner-jet-setup.txt> 10 10 11 11 /* execute icbi after enabling cache */ 12 12 mov.l 1f, r0
+3
arch/sh/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+5
arch/sparc/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + # User exported sparc header files 3 + 4 + include include/uapi/asm-generic/Kbuild.asm 5 +
+1 -1
arch/tile/include/gxio/dma_queue.h
··· 19 19 * DMA queue management APIs shared between TRIO and mPIPE. 20 20 */ 21 21 22 - #include "common.h" 22 + #include <gxio/common.h> 23 23 24 24 /* The credit counter lives in the high 32 bits. */ 25 25 #define DMA_QUEUE_CREDIT_SHIFT 32
+2 -2
arch/tile/include/gxio/mpipe.h
··· 21 21 * resources. 22 22 */ 23 23 24 - #include "common.h" 25 - #include "dma_queue.h" 24 + #include <gxio/common.h> 25 + #include <gxio/dma_queue.h> 26 26 27 27 #include <linux/time.h> 28 28
+2 -2
arch/tile/include/gxio/trio.h
··· 140 140 141 141 #include <linux/types.h> 142 142 143 - #include "common.h" 144 - #include "dma_queue.h" 143 + #include <gxio/common.h> 144 + #include <gxio/dma_queue.h> 145 145 146 146 #include <arch/trio_constants.h> 147 147 #include <arch/trio.h>
+1 -1
arch/tile/include/gxio/usb_host.h
··· 14 14 #ifndef _GXIO_USB_H_ 15 15 #define _GXIO_USB_H_ 16 16 17 - #include "common.h" 17 + #include <gxio/common.h> 18 18 19 19 #include <hv/drv_usb_host_intf.h> 20 20 #include <hv/iorpc.h>
+1 -1
arch/tile/include/hv/iorpc.h
··· 248 248 #if defined(__HV__) 249 249 #include <hv/hypervisor.h> 250 250 #elif defined(__KERNEL__) 251 - #include "hypervisor.h" 251 + #include <hv/hypervisor.h> 252 252 #include <linux/types.h> 253 253 #else 254 254 #include <stdint.h>
+1
arch/tile/include/uapi/arch/Kbuild
··· 1 + # UAPI Header export list
+3
arch/tile/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+3 -1
arch/um/Makefile
··· 66 66 include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS) 67 67 68 68 KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \ 69 - -I$(HOST_DIR)/include/generated 69 + -I$(srctree)/$(HOST_DIR)/include/uapi \ 70 + -I$(HOST_DIR)/include/generated \ 71 + -I$(HOST_DIR)/include/generated/uapi 70 72 71 73 # -Derrno=kernel_errno - This turns all kernel references to errno into 72 74 # kernel_errno to separate them from the libc errno. This allows -fno-common
+18 -18
arch/unicore32/include/mach/PKUnity.h
··· 15 15 #error You must include hardware.h not PKUnity.h 16 16 #endif 17 17 18 - #include "bitfield.h" 18 + #include <mach/bitfield.h> 19 19 20 20 /* 21 21 * Memory Definitions ··· 32 32 * 0x98000000 - 0x9FFFFFFF 128MB PCI PCI-AHB MEM-mapping 33 33 */ 34 34 #define PKUNITY_PCI_BASE io_p2v(0x80000000) /* 0x80000000 - 0xBFFFFFFF 1GB */ 35 - #include "regs-pci.h" 35 + #include <mach/regs-pci.h> 36 36 37 37 #define PKUNITY_PCICFG_BASE (PKUNITY_PCI_BASE + 0x0) 38 38 #define PKUNITY_PCIBRI_BASE (PKUNITY_PCI_BASE + 0x00010000) ··· 50 50 #define PKUNITY_ARBITER_BASE (PKUNITY_AHB_BASE + 0x000000) /* AHB-2 */ 51 51 #define PKUNITY_DDR2CTRL_BASE (PKUNITY_AHB_BASE + 0x100000) /* AHB-3 */ 52 52 #define PKUNITY_DMAC_BASE (PKUNITY_AHB_BASE + 0x200000) /* AHB-4 */ 53 - #include "regs-dmac.h" 53 + #include <mach/regs-dmac.h> 54 54 #define PKUNITY_UMAL_BASE (PKUNITY_AHB_BASE + 0x300000) /* AHB-5 */ 55 - #include "regs-umal.h" 55 + #include <mach/regs-umal.h> 56 56 #define PKUNITY_USB_BASE (PKUNITY_AHB_BASE + 0x400000) /* AHB-6 */ 57 57 #define PKUNITY_SATA_BASE (PKUNITY_AHB_BASE + 0x500000) /* AHB-7 */ 58 58 #define PKUNITY_SMC_BASE (PKUNITY_AHB_BASE + 0x600000) /* AHB-8 */ 59 59 /* AHB-9 is for APB bridge */ 60 60 #define PKUNITY_MME_BASE (PKUNITY_AHB_BASE + 0x700000) /* AHB-10 */ 61 61 #define PKUNITY_UNIGFX_BASE (PKUNITY_AHB_BASE + 0x800000) /* AHB-11 */ 62 - #include "regs-unigfx.h" 62 + #include <mach/regs-unigfx.h> 63 63 #define PKUNITY_NAND_BASE (PKUNITY_AHB_BASE + 0x900000) /* AHB-12 */ 64 - #include "regs-nand.h" 64 + #include <mach/regs-nand.h> 65 65 #define PKUNITY_H264D_BASE (PKUNITY_AHB_BASE + 0xA00000) /* AHB-13 */ 66 66 #define PKUNITY_H264E_BASE (PKUNITY_AHB_BASE + 0xB00000) /* AHB-14 */ 67 67 ··· 72 72 73 73 #define PKUNITY_UART0_BASE (PKUNITY_APB_BASE + 0x000000) /* APB-0 */ 74 74 #define PKUNITY_UART1_BASE (PKUNITY_APB_BASE + 0x100000) /* APB-1 */ 75 - #include "regs-uart.h" 75 + #include <mach/regs-uart.h> 76 76 #define PKUNITY_I2C_BASE (PKUNITY_APB_BASE + 0x200000) /* APB-2 */ 77 - #include "regs-i2c.h" 77 + #include <mach/regs-i2c.h> 78 78 #define PKUNITY_SPI_BASE (PKUNITY_APB_BASE + 0x300000) /* APB-3 */ 79 - #include "regs-spi.h" 79 + #include <mach/regs-spi.h> 80 80 #define PKUNITY_AC97_BASE (PKUNITY_APB_BASE + 0x400000) /* APB-4 */ 81 - #include "regs-ac97.h" 81 + #include <mach/regs-ac97.h> 82 82 #define PKUNITY_GPIO_BASE (PKUNITY_APB_BASE + 0x500000) /* APB-5 */ 83 - #include "regs-gpio.h" 83 + #include <mach/regs-gpio.h> 84 84 #define PKUNITY_INTC_BASE (PKUNITY_APB_BASE + 0x600000) /* APB-6 */ 85 - #include "regs-intc.h" 85 + #include <mach/regs-intc.h> 86 86 #define PKUNITY_RTC_BASE (PKUNITY_APB_BASE + 0x700000) /* APB-7 */ 87 - #include "regs-rtc.h" 87 + #include <mach/regs-rtc.h> 88 88 #define PKUNITY_OST_BASE (PKUNITY_APB_BASE + 0x800000) /* APB-8 */ 89 - #include "regs-ost.h" 89 + #include <mach/regs-ost.h> 90 90 #define PKUNITY_RESETC_BASE (PKUNITY_APB_BASE + 0x900000) /* APB-9 */ 91 - #include "regs-resetc.h" 91 + #include <mach/regs-resetc.h> 92 92 #define PKUNITY_PM_BASE (PKUNITY_APB_BASE + 0xA00000) /* APB-10 */ 93 - #include "regs-pm.h" 93 + #include <mach/regs-pm.h> 94 94 #define PKUNITY_PS2_BASE (PKUNITY_APB_BASE + 0xB00000) /* APB-11 */ 95 - #include "regs-ps2.h" 95 + #include <mach/regs-ps2.h> 96 96 #define PKUNITY_SDC_BASE (PKUNITY_APB_BASE + 0xC00000) /* APB-12 */ 97 - #include "regs-sdc.h" 97 + #include <mach/regs-sdc.h> 98 98
+1 -1
arch/unicore32/include/mach/hardware.h
··· 15 15 #ifndef __MACH_PUV3_HARDWARE_H__ 16 16 #define __MACH_PUV3_HARDWARE_H__ 17 17 18 - #include "PKUnity.h" 18 + #include <mach/PKUnity.h> 19 19 20 20 #ifndef __ASSEMBLY__ 21 21 #define io_p2v(x) (void __iomem *)((x) - PKUNITY_MMIO_BASE)
+2 -2
arch/unicore32/include/mach/uncompress.h
··· 13 13 #ifndef __MACH_PUV3_UNCOMPRESS_H__ 14 14 #define __MACH_PUV3_UNCOMPRESS_H__ 15 15 16 - #include "hardware.h" 17 - #include "ocd.h" 16 + #include <mach/hardware.h> 17 + #include <mach/ocd.h> 18 18 19 19 extern char input_data[]; 20 20 extern char input_data_end[];
+3
arch/unicore32/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+2 -2
arch/x86/boot/Makefile
··· 37 37 targets += $(setup-y) 38 38 hostprogs-y := mkcpustr tools/build 39 39 40 - HOST_EXTRACFLAGS += -I$(srctree)/tools/include $(LINUXINCLUDE) \ 40 + HOST_EXTRACFLAGS += -I$(srctree)/tools/include $(USERINCLUDE) \ 41 41 -D__EXPORTED_HEADERS__ 42 42 43 43 $(obj)/cpu.o: $(obj)/cpustr.h ··· 52 52 53 53 # How to compile the 16-bit code. Note we always compile for -march=i386, 54 54 # that way we can complain to the user if the CPU is insufficient. 55 - KBUILD_CFLAGS := $(LINUXINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \ 55 + KBUILD_CFLAGS := $(USERINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \ 56 56 -DDISABLE_BRANCH_PROFILING \ 57 57 -Wall -Wstrict-prototypes \ 58 58 -march=i386 -mregparm=3 \
+2
arch/x86/boot/mkcpustr.c
··· 15 15 16 16 #include <stdio.h> 17 17 18 + #include "../include/asm/required-features.h" 19 + #include "../include/asm/cpufeature.h" 18 20 #include "../kernel/cpu/capflags.c" 19 21 20 22 int main(void)
-4
arch/x86/include/asm/Kbuild
··· 22 22 header-y += ucontext.h 23 23 header-y += vm86.h 24 24 header-y += vsyscall.h 25 - 26 - genhdr-y += unistd_32.h 27 - genhdr-y += unistd_64.h 28 - genhdr-y += unistd_x32.h
+2 -2
arch/x86/include/asm/atomic.h
··· 309 309 #define smp_mb__after_atomic_inc() barrier() 310 310 311 311 #ifdef CONFIG_X86_32 312 - # include "atomic64_32.h" 312 + # include <asm/atomic64_32.h> 313 313 #else 314 - # include "atomic64_64.h" 314 + # include <asm/atomic64_64.h> 315 315 #endif 316 316 317 317 #endif /* _ASM_X86_ATOMIC_H */
+1 -1
arch/x86/include/asm/calling.h
··· 46 46 47 47 */ 48 48 49 - #include "dwarf2.h" 49 + #include <asm/dwarf2.h> 50 50 51 51 /* 52 52 * 64-bit system call stack frame layout defines and helpers,
+2 -2
arch/x86/include/asm/checksum.h
··· 1 1 #ifdef CONFIG_X86_32 2 - # include "checksum_32.h" 2 + # include <asm/checksum_32.h> 3 3 #else 4 - # include "checksum_64.h" 4 + # include <asm/checksum_64.h> 5 5 #endif
+2 -2
arch/x86/include/asm/cmpxchg.h
··· 138 138 __raw_cmpxchg((ptr), (old), (new), (size), "") 139 139 140 140 #ifdef CONFIG_X86_32 141 - # include "cmpxchg_32.h" 141 + # include <asm/cmpxchg_32.h> 142 142 #else 143 - # include "cmpxchg_64.h" 143 + # include <asm/cmpxchg_64.h> 144 144 #endif 145 145 146 146 #ifdef __HAVE_ARCH_CMPXCHG
+2
arch/x86/include/asm/cpufeature.h
··· 4 4 #ifndef _ASM_X86_CPUFEATURE_H 5 5 #define _ASM_X86_CPUFEATURE_H 6 6 7 + #ifndef _ASM_X86_REQUIRED_FEATURES_H 7 8 #include <asm/required-features.h> 9 + #endif 8 10 9 11 #define NCAPINTS 10 /* N 32-bit words worth of info */ 10 12
+2 -2
arch/x86/include/asm/mmzone.h
··· 1 1 #ifdef CONFIG_X86_32 2 - # include "mmzone_32.h" 2 + # include <asm/mmzone_32.h> 3 3 #else 4 - # include "mmzone_64.h" 4 + # include <asm/mmzone_64.h> 5 5 #endif
+2 -2
arch/x86/include/asm/mutex.h
··· 1 1 #ifdef CONFIG_X86_32 2 - # include "mutex_32.h" 2 + # include <asm/mutex_32.h> 3 3 #else 4 - # include "mutex_64.h" 4 + # include <asm/mutex_64.h> 5 5 #endif
+2 -2
arch/x86/include/asm/numa.h
··· 53 53 #endif /* CONFIG_NUMA */ 54 54 55 55 #ifdef CONFIG_X86_32 56 - # include "numa_32.h" 56 + # include <asm/numa_32.h> 57 57 #else 58 - # include "numa_64.h" 58 + # include <asm/numa_64.h> 59 59 #endif 60 60 61 61 #ifdef CONFIG_NUMA
+1 -1
arch/x86/include/asm/pci.h
··· 141 141 #endif /* __KERNEL__ */ 142 142 143 143 #ifdef CONFIG_X86_64 144 - #include "pci_64.h" 144 + #include <asm/pci_64.h> 145 145 #endif 146 146 147 147 /* implement the pci_ DMA API in terms of the generic device dma_ one */
+2 -2
arch/x86/include/asm/pgtable.h
··· 384 384 #endif /* __ASSEMBLY__ */ 385 385 386 386 #ifdef CONFIG_X86_32 387 - # include "pgtable_32.h" 387 + # include <asm/pgtable_32.h> 388 388 #else 389 - # include "pgtable_64.h" 389 + # include <asm/pgtable_64.h> 390 390 #endif 391 391 392 392 #ifndef __ASSEMBLY__
+2 -2
arch/x86/include/asm/pgtable_types.h
··· 174 174 #endif 175 175 176 176 #ifdef CONFIG_X86_32 177 - # include "pgtable_32_types.h" 177 + # include <asm/pgtable_32_types.h> 178 178 #else 179 - # include "pgtable_64_types.h" 179 + # include <asm/pgtable_64_types.h> 180 180 #endif 181 181 182 182 #ifndef __ASSEMBLY__
+5 -5
arch/x86/include/asm/posix_types.h
··· 1 1 #ifdef __KERNEL__ 2 2 # ifdef CONFIG_X86_32 3 - # include "posix_types_32.h" 3 + # include <asm/posix_types_32.h> 4 4 # else 5 - # include "posix_types_64.h" 5 + # include <asm/posix_types_64.h> 6 6 # endif 7 7 #else 8 8 # ifdef __i386__ 9 - # include "posix_types_32.h" 9 + # include <asm/posix_types_32.h> 10 10 # elif defined(__ILP32__) 11 - # include "posix_types_x32.h" 11 + # include <asm/posix_types_x32.h> 12 12 # else 13 - # include "posix_types_64.h" 13 + # include <asm/posix_types_64.h> 14 14 # endif 15 15 #endif
+2 -2
arch/x86/include/asm/seccomp.h
··· 1 1 #ifdef CONFIG_X86_32 2 - # include "seccomp_32.h" 2 + # include <asm/seccomp_32.h> 3 3 #else 4 - # include "seccomp_64.h" 4 + # include <asm/seccomp_64.h> 5 5 #endif
+2 -2
arch/x86/include/asm/string.h
··· 1 1 #ifdef CONFIG_X86_32 2 - # include "string_32.h" 2 + # include <asm/string_32.h> 3 3 #else 4 - # include "string_64.h" 4 + # include <asm/string_64.h> 5 5 #endif
+2 -2
arch/x86/include/asm/suspend.h
··· 1 1 #ifdef CONFIG_X86_32 2 - # include "suspend_32.h" 2 + # include <asm/suspend_32.h> 3 3 #else 4 - # include "suspend_64.h" 4 + # include <asm/suspend_64.h> 5 5 #endif
+2 -2
arch/x86/include/asm/uaccess.h
··· 589 589 #define ARCH_HAS_NOCACHE_UACCESS 1 590 590 591 591 #ifdef CONFIG_X86_32 592 - # include "uaccess_32.h" 592 + # include <asm/uaccess_32.h> 593 593 #else 594 - # include "uaccess_64.h" 594 + # include <asm/uaccess_64.h> 595 595 #endif 596 596 597 597 #endif /* _ASM_X86_UACCESS_H */
+2 -2
arch/x86/include/asm/user.h
··· 2 2 #define _ASM_X86_USER_H 3 3 4 4 #ifdef CONFIG_X86_32 5 - # include "user_32.h" 5 + # include <asm/user_32.h> 6 6 #else 7 - # include "user_64.h" 7 + # include <asm/user_64.h> 8 8 #endif 9 9 10 10 #include <asm/types.h>
+2 -2
arch/x86/include/asm/xen/interface.h
··· 121 121 #endif /* !__ASSEMBLY__ */ 122 122 123 123 #ifdef CONFIG_X86_32 124 - #include "interface_32.h" 124 + #include <asm/xen/interface_32.h> 125 125 #else 126 - #include "interface_64.h" 126 + #include <asm/xen/interface_64.h> 127 127 #endif 128 128 129 129 #include <asm/pvclock-abi.h>
+2 -2
arch/x86/include/asm/xor.h
··· 3 3 # include <asm-generic/xor.h> 4 4 #else 5 5 #ifdef CONFIG_X86_32 6 - # include "xor_32.h" 6 + # include <asm/xor_32.h> 7 7 #else 8 - # include "xor_64.h" 8 + # include <asm/xor_64.h> 9 9 #endif 10 10 #endif
+1 -1
arch/x86/include/asm/xor_32.h
··· 822 822 }; 823 823 824 824 /* Also try the AVX routines */ 825 - #include "xor_avx.h" 825 + #include <asm/xor_avx.h> 826 826 827 827 /* Also try the generic routines. */ 828 828 #include <asm-generic/xor.h>
+1 -1
arch/x86/include/asm/xor_64.h
··· 306 306 307 307 308 308 /* Also try the AVX routines */ 309 - #include "xor_avx.h" 309 + #include <asm/xor_avx.h> 310 310 311 311 #undef XOR_TRY_TEMPLATES 312 312 #define XOR_TRY_TEMPLATES \
+6
arch/x86/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 + 4 + genhdr-y += unistd_32.h 5 + genhdr-y += unistd_64.h 6 + genhdr-y += unistd_x32.h
+4 -1
arch/x86/kernel/cpu/mkcapflags.pl
··· 8 8 open(IN, "< $in\0") or die "$0: cannot open: $in: $!\n"; 9 9 open(OUT, "> $out\0") or die "$0: cannot create: $out: $!\n"; 10 10 11 - print OUT "#include <asm/cpufeature.h>\n\n"; 11 + print OUT "#ifndef _ASM_X86_CPUFEATURE_H\n"; 12 + print OUT "#include <asm/cpufeature.h>\n"; 13 + print OUT "#endif\n"; 14 + print OUT "\n"; 12 15 print OUT "const char * const x86_cap_flags[NCAPINTS*32] = {\n"; 13 16 14 17 %features = ();
+4
arch/x86/lib/insn.c
··· 18 18 * Copyright (C) IBM Corporation, 2002, 2004, 2009 19 19 */ 20 20 21 + #ifdef __KERNEL__ 21 22 #include <linux/string.h> 23 + #else 24 + #include <string.h> 25 + #endif 22 26 #include <asm/inat.h> 23 27 #include <asm/insn.h> 24 28
+10 -7
arch/x86/syscalls/Makefile
··· 1 1 out := $(obj)/../include/generated/asm 2 + uapi := $(obj)/../include/generated/uapi/asm 2 3 3 4 # Create output directory if not already present 4 - _dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') 5 + _dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') \ 6 + $(shell [ -d '$(uapi)' ] || mkdir -p '$(uapi)') 5 7 6 8 syscall32 := $(srctree)/$(src)/syscall_32.tbl 7 9 syscall64 := $(srctree)/$(src)/syscall_64.tbl ··· 20 18 cmd_systbl = $(CONFIG_SHELL) '$(systbl)' $< $@ 21 19 22 20 syshdr_abi_unistd_32 := i386 23 - $(out)/unistd_32.h: $(syscall32) $(syshdr) 21 + $(uapi)/unistd_32.h: $(syscall32) $(syshdr) 24 22 $(call if_changed,syshdr) 25 23 26 24 syshdr_abi_unistd_32_ia32 := i386 ··· 30 28 31 29 syshdr_abi_unistd_x32 := common,x32 32 30 syshdr_offset_unistd_x32 := __X32_SYSCALL_BIT 33 - $(out)/unistd_x32.h: $(syscall64) $(syshdr) 31 + $(uapi)/unistd_x32.h: $(syscall64) $(syshdr) 34 32 $(call if_changed,syshdr) 35 33 36 34 syshdr_abi_unistd_64 := common,64 37 - $(out)/unistd_64.h: $(syscall64) $(syshdr) 35 + $(uapi)/unistd_64.h: $(syscall64) $(syshdr) 38 36 $(call if_changed,syshdr) 39 37 40 38 syshdr_abi_unistd_64_x32 := x32 ··· 47 45 $(out)/syscalls_64.h: $(syscall64) $(systbl) 48 46 $(call if_changed,systbl) 49 47 50 - syshdr-y += unistd_32.h unistd_64.h unistd_x32.h 48 + uapisyshdr-y += unistd_32.h unistd_64.h unistd_x32.h 51 49 syshdr-y += syscalls_32.h 52 50 syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h unistd_64_x32.h 53 51 syshdr-$(CONFIG_X86_64) += syscalls_64.h 54 52 55 - targets += $(syshdr-y) 53 + targets += $(uapisyshdr-y) $(syshdr-y) 56 54 57 - all: $(addprefix $(out)/,$(targets)) 55 + all: $(addprefix $(uapi)/,$(uapisyshdr-y)) 56 + all: $(addprefix $(out)/,$(syshdr-y))
+1 -1
arch/x86/tools/Makefile
··· 28 28 hostprogs-y += test_get_len insn_sanity 29 29 30 30 # -I needed for generated C source and C source which in the kernel tree. 31 - HOSTCFLAGS_test_get_len.o := -Wall -I$(objtree)/arch/x86/lib/ -I$(srctree)/arch/x86/include/ -I$(srctree)/arch/x86/lib/ -I$(srctree)/include/ 31 + HOSTCFLAGS_test_get_len.o := -Wall -I$(objtree)/arch/x86/lib/ -I$(srctree)/arch/x86/include/uapi/ -I$(srctree)/arch/x86/include/ -I$(srctree)/arch/x86/lib/ -I$(srctree)/include/uapi/ 32 32 33 33 HOSTCFLAGS_insn_sanity.o := -Wall -I$(objtree)/arch/x86/lib/ -I$(srctree)/arch/x86/include/ -I$(srctree)/arch/x86/lib/ -I$(srctree)/include/ 34 34
+3
arch/xtensa/include/uapi/asm/Kbuild
··· 1 + # UAPI Header export list 2 + include include/uapi/asm-generic/Kbuild.asm 3 +
+2 -3
drivers/gpu/drm/ast/ast_drv.c
··· 28 28 #include <linux/module.h> 29 29 #include <linux/console.h> 30 30 31 - #include "drmP.h" 32 - #include "drm.h" 33 - #include "drm_crtc_helper.h" 31 + #include <drm/drmP.h> 32 + #include <drm/drm_crtc_helper.h> 34 33 35 34 #include "ast_drv.h" 36 35
+6 -6
drivers/gpu/drm/ast/ast_drv.h
··· 28 28 #ifndef __AST_DRV_H__ 29 29 #define __AST_DRV_H__ 30 30 31 - #include "drm_fb_helper.h" 31 + #include <drm/drm_fb_helper.h> 32 32 33 - #include "ttm/ttm_bo_api.h" 34 - #include "ttm/ttm_bo_driver.h" 35 - #include "ttm/ttm_placement.h" 36 - #include "ttm/ttm_memory.h" 37 - #include "ttm/ttm_module.h" 33 + #include <drm/ttm/ttm_bo_api.h> 34 + #include <drm/ttm/ttm_bo_driver.h> 35 + #include <drm/ttm/ttm_placement.h> 36 + #include <drm/ttm/ttm_memory.h> 37 + #include <drm/ttm/ttm_module.h> 38 38 39 39 #include <linux/i2c.h> 40 40 #include <linux/i2c-algo-bit.h>
+3 -4
drivers/gpu/drm/ast/ast_fb.c
··· 37 37 #include <linux/init.h> 38 38 39 39 40 - #include "drmP.h" 41 - #include "drm.h" 42 - #include "drm_crtc.h" 43 - #include "drm_fb_helper.h" 40 + #include <drm/drmP.h> 41 + #include <drm/drm_crtc.h> 42 + #include <drm/drm_fb_helper.h> 44 43 #include "ast_drv.h" 45 44 46 45 static void ast_dirty_update(struct ast_fbdev *afbdev,
+3 -3
drivers/gpu/drm/ast/ast_main.c
··· 25 25 /* 26 26 * Authors: Dave Airlie <airlied@redhat.com> 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "ast_drv.h" 30 30 31 31 32 - #include "drm_fb_helper.h" 33 - #include "drm_crtc_helper.h" 32 + #include <drm/drm_fb_helper.h> 33 + #include <drm/drm_crtc_helper.h> 34 34 35 35 #include "ast_dram_tables.h" 36 36
+3 -3
drivers/gpu/drm/ast/ast_mode.c
··· 28 28 * Authors: Dave Airlie <airlied@redhat.com> 29 29 */ 30 30 #include <linux/export.h> 31 - #include "drmP.h" 32 - #include "drm_crtc.h" 33 - #include "drm_crtc_helper.h" 31 + #include <drm/drmP.h> 32 + #include <drm/drm_crtc.h> 33 + #include <drm/drm_crtc_helper.h> 34 34 #include "ast_drv.h" 35 35 36 36 #include "ast_tables.h"
+1 -1
drivers/gpu/drm/ast/ast_post.c
··· 26 26 * Authors: Dave Airlie <airlied@redhat.com> 27 27 */ 28 28 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 #include "ast_drv.h" 31 31 32 32 #include "ast_dram_tables.h"
+1 -1
drivers/gpu/drm/ast/ast_ttm.c
··· 25 25 /* 26 26 * Authors: Dave Airlie <airlied@redhat.com> 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "ast_drv.h" 30 30 #include <ttm/ttm_page_alloc.h> 31 31
+1 -1
drivers/gpu/drm/ati_pcigart.c
··· 32 32 */ 33 33 34 34 #include <linux/export.h> 35 - #include "drmP.h" 35 + #include <drm/drmP.h> 36 36 37 37 # define ATI_PCIGART_PAGE_SIZE 4096 /**< PCI GART page size */ 38 38
+1 -2
drivers/gpu/drm/cirrus/cirrus_drv.c
··· 10 10 */ 11 11 #include <linux/module.h> 12 12 #include <linux/console.h> 13 - #include "drmP.h" 14 - #include "drm.h" 13 + #include <drm/drmP.h> 15 14 16 15 #include "cirrus_drv.h" 17 16
+5 -5
drivers/gpu/drm/cirrus/cirrus_drv.h
··· 15 15 16 16 #include <drm/drm_fb_helper.h> 17 17 18 - #include "ttm/ttm_bo_api.h" 19 - #include "ttm/ttm_bo_driver.h" 20 - #include "ttm/ttm_placement.h" 21 - #include "ttm/ttm_memory.h" 22 - #include "ttm/ttm_module.h" 18 + #include <drm/ttm/ttm_bo_api.h> 19 + #include <drm/ttm/ttm_bo_driver.h> 20 + #include <drm/ttm/ttm_placement.h> 21 + #include <drm/ttm/ttm_memory.h> 22 + #include <drm/ttm/ttm_module.h> 23 23 24 24 #define DRIVER_AUTHOR "Matthew Garrett" 25 25
+2 -3
drivers/gpu/drm/cirrus/cirrus_fbdev.c
··· 9 9 * Dave Airlie 10 10 */ 11 11 #include <linux/module.h> 12 - #include "drmP.h" 13 - #include "drm.h" 14 - #include "drm_fb_helper.h" 12 + #include <drm/drmP.h> 13 + #include <drm/drm_fb_helper.h> 15 14 16 15 #include <linux/fb.h> 17 16
+2 -3
drivers/gpu/drm/cirrus/cirrus_main.c
··· 8 8 * Authors: Matthew Garrett 9 9 * Dave Airlie 10 10 */ 11 - #include "drmP.h" 12 - #include "drm.h" 13 - #include "drm_crtc_helper.h" 11 + #include <drm/drmP.h> 12 + #include <drm/drm_crtc_helper.h> 14 13 15 14 #include "cirrus_drv.h" 16 15
+2 -3
drivers/gpu/drm/cirrus/cirrus_mode.c
··· 14 14 * 15 15 * Copyright 1999-2001 Jeff Garzik <jgarzik@pobox.com> 16 16 */ 17 - #include "drmP.h" 18 - #include "drm.h" 19 - #include "drm_crtc_helper.h" 17 + #include <drm/drmP.h> 18 + #include <drm/drm_crtc_helper.h> 20 19 21 20 #include <video/cirrus.h> 22 21
+1 -1
drivers/gpu/drm/cirrus/cirrus_ttm.c
··· 25 25 /* 26 26 * Authors: Dave Airlie <airlied@redhat.com> 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "cirrus_drv.h" 30 30 #include <ttm/ttm_page_alloc.h> 31 31
+1 -1
drivers/gpu/drm/drm_agpsupport.c
··· 31 31 * OTHER DEALINGS IN THE SOFTWARE. 32 32 */ 33 33 34 - #include "drmP.h" 34 + #include <drm/drmP.h> 35 35 #include <linux/module.h> 36 36 #include <linux/slab.h> 37 37
+1 -1
drivers/gpu/drm/drm_auth.c
··· 33 33 * OTHER DEALINGS IN THE SOFTWARE. 34 34 */ 35 35 36 - #include "drmP.h" 36 + #include <drm/drmP.h> 37 37 38 38 /** 39 39 * Find the file with the given magic number.
+1 -1
drivers/gpu/drm/drm_buffer.c
··· 33 33 */ 34 34 35 35 #include <linux/export.h> 36 - #include "drm_buffer.h" 36 + #include <drm/drm_buffer.h> 37 37 38 38 /** 39 39 * Allocate the drm buffer object.
+1 -1
drivers/gpu/drm/drm_bufs.c
··· 38 38 #include <linux/log2.h> 39 39 #include <linux/export.h> 40 40 #include <asm/shmparam.h> 41 - #include "drmP.h" 41 + #include <drm/drmP.h> 42 42 43 43 static struct drm_map_list *drm_find_matching_map(struct drm_device *dev, 44 44 struct drm_local_map *map)
+1 -1
drivers/gpu/drm/drm_cache.c
··· 29 29 */ 30 30 31 31 #include <linux/export.h> 32 - #include "drmP.h" 32 + #include <drm/drmP.h> 33 33 34 34 #if defined(CONFIG_X86) 35 35 static void
+1 -1
drivers/gpu/drm/drm_context.c
··· 40 40 * needed by SiS driver's memory management. 41 41 */ 42 42 43 - #include "drmP.h" 43 + #include <drm/drmP.h> 44 44 45 45 /******************************************************************/ 46 46 /** \name Context bitmap support */
+4 -5
drivers/gpu/drm/drm_crtc.c
··· 32 32 #include <linux/list.h> 33 33 #include <linux/slab.h> 34 34 #include <linux/export.h> 35 - #include "drm.h" 36 - #include "drmP.h" 37 - #include "drm_crtc.h" 38 - #include "drm_edid.h" 39 - #include "drm_fourcc.h" 35 + #include <drm/drmP.h> 36 + #include <drm/drm_crtc.h> 37 + #include <drm/drm_edid.h> 38 + #include <drm/drm_fourcc.h> 40 39 41 40 /* Avoid boilerplate. I'm tired of typing. */ 42 41 #define DRM_ENUM_NAME_FN(fnname, list) \
+6 -6
drivers/gpu/drm/drm_crtc_helper.c
··· 32 32 #include <linux/export.h> 33 33 #include <linux/moduleparam.h> 34 34 35 - #include "drmP.h" 36 - #include "drm_crtc.h" 37 - #include "drm_fourcc.h" 38 - #include "drm_crtc_helper.h" 39 - #include "drm_fb_helper.h" 40 - #include "drm_edid.h" 35 + #include <drm/drmP.h> 36 + #include <drm/drm_crtc.h> 37 + #include <drm/drm_fourcc.h> 38 + #include <drm/drm_crtc_helper.h> 39 + #include <drm/drm_fb_helper.h> 40 + #include <drm/drm_edid.h> 41 41 42 42 static bool drm_kms_helper_poll = true; 43 43 module_param_named(poll, drm_kms_helper_poll, bool, 0600);
+1 -1
drivers/gpu/drm/drm_debugfs.c
··· 34 34 #include <linux/seq_file.h> 35 35 #include <linux/slab.h> 36 36 #include <linux/export.h> 37 - #include "drmP.h" 37 + #include <drm/drmP.h> 38 38 39 39 #if defined(CONFIG_DEBUG_FS) 40 40
+1 -1
drivers/gpu/drm/drm_dma.c
··· 34 34 */ 35 35 36 36 #include <linux/export.h> 37 - #include "drmP.h" 37 + #include <drm/drmP.h> 38 38 39 39 /** 40 40 * Initialize the DMA data.
+2 -2
drivers/gpu/drm/drm_dp_i2c_helper.c
··· 27 27 #include <linux/errno.h> 28 28 #include <linux/sched.h> 29 29 #include <linux/i2c.h> 30 - #include "drm_dp_helper.h" 31 - #include "drmP.h" 30 + #include <drm/drm_dp_helper.h> 31 + #include <drm/drmP.h> 32 32 33 33 /* Run a single AUX_CH I2C transaction, writing/reading data as necessary */ 34 34 static int
+2 -2
drivers/gpu/drm/drm_drv.c
··· 49 49 #include <linux/debugfs.h> 50 50 #include <linux/slab.h> 51 51 #include <linux/export.h> 52 - #include "drmP.h" 53 - #include "drm_core.h" 52 + #include <drm/drmP.h> 53 + #include <drm/drm_core.h> 54 54 55 55 56 56 static int drm_version(struct drm_device *dev, void *data,
+2 -2
drivers/gpu/drm/drm_edid.c
··· 31 31 #include <linux/slab.h> 32 32 #include <linux/i2c.h> 33 33 #include <linux/module.h> 34 - #include "drmP.h" 35 - #include "drm_edid.h" 34 + #include <drm/drmP.h> 35 + #include <drm/drm_edid.h> 36 36 #include "drm_edid_modes.h" 37 37 38 38 #define version_greater(edid, maj, min) \
+4 -4
drivers/gpu/drm/drm_edid_load.c
··· 21 21 22 22 #include <linux/module.h> 23 23 #include <linux/firmware.h> 24 - #include "drmP.h" 25 - #include "drm_crtc.h" 26 - #include "drm_crtc_helper.h" 27 - #include "drm_edid.h" 24 + #include <drm/drmP.h> 25 + #include <drm/drm_crtc.h> 26 + #include <drm/drm_crtc_helper.h> 27 + #include <drm/drm_edid.h> 28 28 29 29 static char edid_firmware[PATH_MAX]; 30 30 module_param_string(edid_firmware, edid_firmware, sizeof(edid_firmware), 0644);
+2 -2
drivers/gpu/drm/drm_edid_modes.h
··· 24 24 */ 25 25 26 26 #include <linux/kernel.h> 27 - #include "drmP.h" 28 - #include "drm_edid.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_edid.h> 29 29 30 30 /* 31 31 * Autogenerated from the DMT spec.
+1 -1
drivers/gpu/drm/drm_encoder_slave.c
··· 26 26 27 27 #include <linux/module.h> 28 28 29 - #include "drm_encoder_slave.h" 29 + #include <drm/drm_encoder_slave.h> 30 30 31 31 /** 32 32 * drm_i2c_encoder_init - Initialize an I2C slave encoder
+4 -4
drivers/gpu/drm/drm_fb_helper.c
··· 32 32 #include <linux/slab.h> 33 33 #include <linux/fb.h> 34 34 #include <linux/module.h> 35 - #include "drmP.h" 36 - #include "drm_crtc.h" 37 - #include "drm_fb_helper.h" 38 - #include "drm_crtc_helper.h" 35 + #include <drm/drmP.h> 36 + #include <drm/drm_crtc.h> 37 + #include <drm/drm_fb_helper.h> 38 + #include <drm/drm_crtc_helper.h> 39 39 40 40 MODULE_AUTHOR("David Airlie, Jesse Barnes"); 41 41 MODULE_DESCRIPTION("DRM KMS helper");
+1 -1
drivers/gpu/drm/drm_fops.c
··· 34 34 * OTHER DEALINGS IN THE SOFTWARE. 35 35 */ 36 36 37 - #include "drmP.h" 37 + #include <drm/drmP.h> 38 38 #include <linux/poll.h> 39 39 #include <linux/slab.h> 40 40 #include <linux/module.h>
+1 -1
drivers/gpu/drm/drm_gem.c
··· 36 36 #include <linux/pagemap.h> 37 37 #include <linux/shmem_fs.h> 38 38 #include <linux/dma-buf.h> 39 - #include "drmP.h" 39 + #include <drm/drmP.h> 40 40 41 41 /** @file drm_gem.c 42 42 *
+1 -1
drivers/gpu/drm/drm_global.c
··· 31 31 #include <linux/mutex.h> 32 32 #include <linux/slab.h> 33 33 #include <linux/module.h> 34 - #include "drm_global.h" 34 + #include <drm/drm_global.h> 35 35 36 36 struct drm_global_item { 37 37 struct mutex mutex;
+2 -2
drivers/gpu/drm/drm_hashtab.c
··· 32 32 * Thomas Hellström <thomas-at-tungstengraphics-dot-com> 33 33 */ 34 34 35 - #include "drmP.h" 36 - #include "drm_hashtab.h" 35 + #include <drm/drmP.h> 36 + #include <drm/drm_hashtab.h> 37 37 #include <linux/hash.h> 38 38 #include <linux/slab.h> 39 39 #include <linux/export.h>
+1 -1
drivers/gpu/drm/drm_info.c
··· 34 34 */ 35 35 36 36 #include <linux/seq_file.h> 37 - #include "drmP.h" 37 + #include <drm/drmP.h> 38 38 39 39 /** 40 40 * Called when "/proc/dri/.../name" is read.
+2 -2
drivers/gpu/drm/drm_ioc32.c
··· 31 31 #include <linux/ratelimit.h> 32 32 #include <linux/export.h> 33 33 34 - #include "drmP.h" 35 - #include "drm_core.h" 34 + #include <drm/drmP.h> 35 + #include <drm/drm_core.h> 36 36 37 37 #define DRM_IOCTL_VERSION32 DRM_IOWR(0x00, drm_version32_t) 38 38 #define DRM_IOCTL_GET_UNIQUE32 DRM_IOWR(0x01, drm_unique32_t)
+4 -4
drivers/gpu/drm/drm_ioctl.c
··· 33 33 * OTHER DEALINGS IN THE SOFTWARE. 34 34 */ 35 35 36 - #include "drmP.h" 37 - #include "drm_core.h" 36 + #include <drm/drmP.h> 37 + #include <drm/drm_core.h> 38 38 39 - #include "linux/pci.h" 40 - #include "linux/export.h" 39 + #include <linux/pci.h> 40 + #include <linux/export.h> 41 41 42 42 /** 43 43 * Get the bus id.
+1 -1
drivers/gpu/drm/drm_irq.c
··· 33 33 * OTHER DEALINGS IN THE SOFTWARE. 34 34 */ 35 35 36 - #include "drmP.h" 36 + #include <drm/drmP.h> 37 37 #include "drm_trace.h" 38 38 39 39 #include <linux/interrupt.h> /* For task queue support */
+1 -1
drivers/gpu/drm/drm_lock.c
··· 34 34 */ 35 35 36 36 #include <linux/export.h> 37 - #include "drmP.h" 37 + #include <drm/drmP.h> 38 38 39 39 static int drm_notifier(void *priv); 40 40
+1 -1
drivers/gpu/drm/drm_memory.c
··· 35 35 36 36 #include <linux/highmem.h> 37 37 #include <linux/export.h> 38 - #include "drmP.h" 38 + #include <drm/drmP.h> 39 39 40 40 #if __OS_HAS_AGP 41 41 static void *agp_remap(unsigned long offset, unsigned long size,
+2 -2
drivers/gpu/drm/drm_mm.c
··· 41 41 * Thomas Hellström <thomas-at-tungstengraphics-dot-com> 42 42 */ 43 43 44 - #include "drmP.h" 45 - #include "drm_mm.h" 44 + #include <drm/drmP.h> 45 + #include <drm/drm_mm.h> 46 46 #include <linux/slab.h> 47 47 #include <linux/seq_file.h> 48 48 #include <linux/export.h>
+2 -3
drivers/gpu/drm/drm_modes.c
··· 33 33 #include <linux/list.h> 34 34 #include <linux/list_sort.h> 35 35 #include <linux/export.h> 36 - #include "drmP.h" 37 - #include "drm.h" 38 - #include "drm_crtc.h" 36 + #include <drm/drmP.h> 37 + #include <drm/drm_crtc.h> 39 38 40 39 /** 41 40 * drm_mode_debug_printmodeline - debug print a mode
+1 -1
drivers/gpu/drm/drm_pci.c
··· 40 40 #include <linux/slab.h> 41 41 #include <linux/dma-mapping.h> 42 42 #include <linux/export.h> 43 - #include "drmP.h" 43 + #include <drm/drmP.h> 44 44 45 45 /**********************************************************************/ 46 46 /** \name PCI memory */
+1 -1
drivers/gpu/drm/drm_platform.c
··· 26 26 */ 27 27 28 28 #include <linux/export.h> 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 31 31 /** 32 32 * Register.
+1 -1
drivers/gpu/drm/drm_prime.c
··· 28 28 29 29 #include <linux/export.h> 30 30 #include <linux/dma-buf.h> 31 - #include "drmP.h" 31 + #include <drm/drmP.h> 32 32 33 33 /* 34 34 * DMA-BUF/GEM Object references and lifetime overview:
+1 -1
drivers/gpu/drm/drm_proc.c
··· 40 40 #include <linux/seq_file.h> 41 41 #include <linux/slab.h> 42 42 #include <linux/export.h> 43 - #include "drmP.h" 43 + #include <drm/drmP.h> 44 44 45 45 /*************************************************** 46 46 * Initialization, etc.
+1 -1
drivers/gpu/drm/drm_scatter.c
··· 33 33 34 34 #include <linux/vmalloc.h> 35 35 #include <linux/slab.h> 36 - #include "drmP.h" 36 + #include <drm/drmP.h> 37 37 38 38 #define DEBUG_SCATTER 0 39 39
+2 -2
drivers/gpu/drm/drm_stub.c
··· 34 34 #include <linux/module.h> 35 35 #include <linux/moduleparam.h> 36 36 #include <linux/slab.h> 37 - #include "drmP.h" 38 - #include "drm_core.h" 37 + #include <drm/drmP.h> 38 + #include <drm/drm_core.h> 39 39 40 40 unsigned int drm_debug = 0; /* 1 to enable debug output */ 41 41 EXPORT_SYMBOL(drm_debug);
+3 -3
drivers/gpu/drm/drm_sysfs.c
··· 18 18 #include <linux/err.h> 19 19 #include <linux/export.h> 20 20 21 - #include "drm_sysfs.h" 22 - #include "drm_core.h" 23 - #include "drmP.h" 21 + #include <drm/drm_sysfs.h> 22 + #include <drm/drm_core.h> 23 + #include <drm/drmP.h> 24 24 25 25 #define to_drm_minor(d) container_of(d, struct drm_minor, kdev) 26 26 #define to_drm_connector(d) container_of(d, struct drm_connector, kdev)
+1 -1
drivers/gpu/drm/drm_trace_points.c
··· 1 - #include "drmP.h" 1 + #include <drm/drmP.h> 2 2 3 3 #define CREATE_TRACE_POINTS 4 4 #include "drm_trace.h"
+1 -1
drivers/gpu/drm/drm_usb.c
··· 1 - #include "drmP.h" 1 + #include <drm/drmP.h> 2 2 #include <linux/usb.h> 3 3 #include <linux/module.h> 4 4
+1 -1
drivers/gpu/drm/drm_vm.c
··· 33 33 * OTHER DEALINGS IN THE SOFTWARE. 34 34 */ 35 35 36 - #include "drmP.h" 36 + #include <drm/drmP.h> 37 37 #include <linux/export.h> 38 38 #if defined(__ia64__) 39 39 #include <linux/efi.h>
+1 -1
drivers/gpu/drm/exynos/exynos_ddc.c
··· 11 11 * 12 12 */ 13 13 14 - #include "drmP.h" 14 + #include <drm/drmP.h> 15 15 16 16 #include <linux/kernel.h> 17 17 #include <linux/i2c.h>
+2 -3
drivers/gpu/drm/exynos/exynos_drm_buf.c
··· 23 23 * OTHER DEALINGS IN THE SOFTWARE. 24 24 */ 25 25 26 - #include "drmP.h" 27 - #include "drm.h" 28 - #include "exynos_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/exynos_drm.h> 29 28 30 29 #include "exynos_drm_drv.h" 31 30 #include "exynos_drm_gem.h"
+2 -2
drivers/gpu/drm/exynos/exynos_drm_connector.c
··· 25 25 * OTHER DEALINGS IN THE SOFTWARE. 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "drm_crtc_helper.h" 28 + #include <drm/drmP.h> 29 + #include <drm/drm_crtc_helper.h> 30 30 31 31 #include <drm/exynos_drm.h> 32 32 #include "exynos_drm_drv.h"
+1 -1
drivers/gpu/drm/exynos/exynos_drm_core.c
··· 26 26 * OTHER DEALINGS IN THE SOFTWARE. 27 27 */ 28 28 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 #include "exynos_drm_drv.h" 31 31 #include "exynos_drm_encoder.h" 32 32 #include "exynos_drm_connector.h"
+2 -2
drivers/gpu/drm/exynos/exynos_drm_crtc.c
··· 26 26 * OTHER DEALINGS IN THE SOFTWARE. 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm_crtc_helper.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_crtc_helper.h> 31 31 32 32 #include "exynos_drm_drv.h" 33 33 #include "exynos_drm_encoder.h"
+2 -3
drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
··· 23 23 * OTHER DEALINGS IN THE SOFTWARE. 24 24 */ 25 25 26 - #include "drmP.h" 27 - #include "drm.h" 28 - #include "exynos_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/exynos_drm.h> 29 28 #include "exynos_drm_drv.h" 30 29 #include "exynos_drm_gem.h" 31 30
+2 -3
drivers/gpu/drm/exynos/exynos_drm_drv.c
··· 25 25 * OTHER DEALINGS IN THE SOFTWARE. 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "drm_crtc_helper.h" 28 + #include <drm/drmP.h> 29 + #include <drm/drm_crtc_helper.h> 31 30 32 31 #include <drm/exynos_drm.h> 33 32
-1
drivers/gpu/drm/exynos/exynos_drm_drv.h
··· 30 30 #define _EXYNOS_DRM_DRV_H_ 31 31 32 32 #include <linux/module.h> 33 - #include "drm.h" 34 33 35 34 #define MAX_CRTC 3 36 35 #define MAX_PLANE 5
+2 -2
drivers/gpu/drm/exynos/exynos_drm_encoder.c
··· 26 26 * OTHER DEALINGS IN THE SOFTWARE. 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm_crtc_helper.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_crtc_helper.h> 31 31 32 32 #include "exynos_drm_drv.h" 33 33 #include "exynos_drm_encoder.h"
+4 -4
drivers/gpu/drm/exynos/exynos_drm_fb.c
··· 26 26 * OTHER DEALINGS IN THE SOFTWARE. 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm_crtc.h" 31 - #include "drm_crtc_helper.h" 32 - #include "drm_fb_helper.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_crtc.h> 31 + #include <drm/drm_crtc_helper.h> 32 + #include <drm/drm_fb_helper.h> 33 33 34 34 #include "exynos_drm_drv.h" 35 35 #include "exynos_drm_fb.h"
+4 -4
drivers/gpu/drm/exynos/exynos_drm_fbdev.c
··· 26 26 * OTHER DEALINGS IN THE SOFTWARE. 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm_crtc.h" 31 - #include "drm_fb_helper.h" 32 - #include "drm_crtc_helper.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_crtc.h> 31 + #include <drm/drm_fb_helper.h> 32 + #include <drm/drm_crtc_helper.h> 33 33 34 34 #include "exynos_drm_drv.h" 35 35 #include "exynos_drm_fb.h"
+1 -1
drivers/gpu/drm/exynos/exynos_drm_fimd.c
··· 11 11 * option) any later version. 12 12 * 13 13 */ 14 - #include "drmP.h" 14 + #include <drm/drmP.h> 15 15 16 16 #include <linux/kernel.h> 17 17 #include <linux/module.h>
+2 -2
drivers/gpu/drm/exynos/exynos_drm_g2d.c
··· 18 18 #include <linux/slab.h> 19 19 #include <linux/workqueue.h> 20 20 21 - #include "drmP.h" 22 - #include "exynos_drm.h" 21 + #include <drm/drmP.h> 22 + #include <drm/exynos_drm.h> 23 23 #include "exynos_drm_drv.h" 24 24 #include "exynos_drm_gem.h" 25 25
+1 -2
drivers/gpu/drm/exynos/exynos_drm_gem.c
··· 23 23 * OTHER DEALINGS IN THE SOFTWARE. 24 24 */ 25 25 26 - #include "drmP.h" 27 - #include "drm.h" 26 + #include <drm/drmP.h> 28 27 29 28 #include <linux/shmem_fs.h> 30 29 #include <drm/exynos_drm.h>
+1 -1
drivers/gpu/drm/exynos/exynos_drm_hdmi.c
··· 11 11 * 12 12 */ 13 13 14 - #include "drmP.h" 14 + #include <drm/drmP.h> 15 15 16 16 #include <linux/kernel.h> 17 17 #include <linux/wait.h>
+2 -2
drivers/gpu/drm/exynos/exynos_drm_plane.c
··· 9 9 * 10 10 */ 11 11 12 - #include "drmP.h" 12 + #include <drm/drmP.h> 13 13 14 - #include "exynos_drm.h" 14 + #include <drm/exynos_drm.h> 15 15 #include "exynos_drm_drv.h" 16 16 #include "exynos_drm_encoder.h" 17 17 #include "exynos_drm_fb.h"
+3 -3
drivers/gpu/drm/exynos/exynos_drm_vidi.c
··· 10 10 * option) any later version. 11 11 * 12 12 */ 13 - #include "drmP.h" 13 + #include <drm/drmP.h> 14 14 15 15 #include <linux/kernel.h> 16 16 #include <linux/module.h> ··· 18 18 19 19 #include <drm/exynos_drm.h> 20 20 21 - #include "drm_edid.h" 22 - #include "drm_crtc_helper.h" 21 + #include <drm/drm_edid.h> 22 + #include <drm/drm_crtc_helper.h> 23 23 24 24 #include "exynos_drm_drv.h" 25 25 #include "exynos_drm_crtc.h"
+3 -3
drivers/gpu/drm/exynos/exynos_hdmi.c
··· 14 14 * 15 15 */ 16 16 17 - #include "drmP.h" 18 - #include "drm_edid.h" 19 - #include "drm_crtc_helper.h" 17 + #include <drm/drmP.h> 18 + #include <drm/drm_edid.h> 19 + #include <drm/drm_crtc_helper.h> 20 20 21 21 #include "regs-hdmi.h" 22 22
+1 -1
drivers/gpu/drm/exynos/exynos_hdmiphy.c
··· 11 11 * 12 12 */ 13 13 14 - #include "drmP.h" 14 + #include <drm/drmP.h> 15 15 16 16 #include <linux/kernel.h> 17 17 #include <linux/i2c.h>
+1 -1
drivers/gpu/drm/exynos/exynos_mixer.c
··· 14 14 * 15 15 */ 16 16 17 - #include "drmP.h" 17 + #include <drm/drmP.h> 18 18 19 19 #include "regs-mixer.h" 20 20 #include "regs-vp.h"
+1 -1
drivers/gpu/drm/gma500/cdv_device.c
··· 20 20 #include <linux/backlight.h> 21 21 #include <drm/drmP.h> 22 22 #include <drm/drm.h> 23 - #include "gma_drm.h" 23 + #include <drm/gma_drm.h> 24 24 #include "psb_drv.h" 25 25 #include "psb_reg.h" 26 26 #include "psb_intel_reg.h"
+1 -1
drivers/gpu/drm/gma500/gem.c
··· 25 25 26 26 #include <drm/drmP.h> 27 27 #include <drm/drm.h> 28 - #include "gma_drm.h" 28 + #include <drm/gma_drm.h> 29 29 #include "psb_drv.h" 30 30 31 31 int psb_gem_init_object(struct drm_gem_object *obj)
+1 -1
drivers/gpu/drm/gma500/intel_bios.c
··· 20 20 */ 21 21 #include <drm/drmP.h> 22 22 #include <drm/drm.h> 23 - #include "gma_drm.h" 23 + #include <drm/gma_drm.h> 24 24 #include "psb_drv.h" 25 25 #include "psb_intel_drv.h" 26 26 #include "psb_intel_reg.h"
+2 -3
drivers/gpu/drm/gma500/intel_gmbus.c
··· 29 29 #include <linux/module.h> 30 30 #include <linux/i2c.h> 31 31 #include <linux/i2c-algo-bit.h> 32 - #include "drmP.h" 33 - #include "drm.h" 32 + #include <drm/drmP.h> 34 33 #include "psb_intel_drv.h" 35 - #include "gma_drm.h" 34 + #include <drm/gma_drm.h> 36 35 #include "psb_drv.h" 37 36 #include "psb_intel_reg.h" 38 37
+1 -1
drivers/gpu/drm/gma500/mid_bios.c
··· 25 25 26 26 #include <drm/drmP.h> 27 27 #include <drm/drm.h> 28 - #include "gma_drm.h" 28 + #include <drm/gma_drm.h> 29 29 #include "psb_drv.h" 30 30 #include "mid_bios.h" 31 31
+1 -1
drivers/gpu/drm/gma500/oaktrail_device.c
··· 22 22 #include <linux/dmi.h> 23 23 #include <drm/drmP.h> 24 24 #include <drm/drm.h> 25 - #include "gma_drm.h" 25 + #include <drm/gma_drm.h> 26 26 #include "psb_drv.h" 27 27 #include "psb_reg.h" 28 28 #include "psb_intel_reg.h"
+1 -1
drivers/gpu/drm/gma500/psb_device.c
··· 20 20 #include <linux/backlight.h> 21 21 #include <drm/drmP.h> 22 22 #include <drm/drm.h> 23 - #include "gma_drm.h" 23 + #include <drm/gma_drm.h> 24 24 #include "psb_drv.h" 25 25 #include "psb_reg.h" 26 26 #include "psb_intel_reg.h"
+1 -1
drivers/gpu/drm/gma500/psb_drv.c
··· 21 21 22 22 #include <drm/drmP.h> 23 23 #include <drm/drm.h> 24 - #include "gma_drm.h" 24 + #include <drm/gma_drm.h> 25 25 #include "psb_drv.h" 26 26 #include "framebuffer.h" 27 27 #include "psb_reg.h"
+2 -2
drivers/gpu/drm/gma500/psb_drv.h
··· 23 23 #include <linux/kref.h> 24 24 25 25 #include <drm/drmP.h> 26 - #include "drm_global.h" 26 + #include <drm/drm_global.h> 27 27 #include "gem_glue.h" 28 - #include "gma_drm.h" 28 + #include <drm/gma_drm.h> 29 29 #include "psb_reg.h" 30 30 #include "psb_intel_drv.h" 31 31 #include "gtt.h"
+4 -5
drivers/gpu/drm/gma500/psb_intel_sdvo.c
··· 29 29 #include <linux/i2c.h> 30 30 #include <linux/slab.h> 31 31 #include <linux/delay.h> 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "drm_crtc.h" 35 - #include "drm_edid.h" 32 + #include <drm/drmP.h> 33 + #include <drm/drm_crtc.h> 34 + #include <drm/drm_edid.h> 36 35 #include "psb_intel_drv.h" 37 - #include "gma_drm.h" 36 + #include <drm/gma_drm.h> 38 37 #include "psb_drv.h" 39 38 #include "psb_intel_sdvo_regs.h" 40 39 #include "psb_intel_reg.h"
+4 -4
drivers/gpu/drm/i2c/ch7006_priv.h
··· 27 27 #ifndef __DRM_I2C_CH7006_PRIV_H__ 28 28 #define __DRM_I2C_CH7006_PRIV_H__ 29 29 30 - #include "drmP.h" 31 - #include "drm_crtc_helper.h" 32 - #include "drm_encoder_slave.h" 33 - #include "i2c/ch7006.h" 30 + #include <drm/drmP.h> 31 + #include <drm/drm_crtc_helper.h> 32 + #include <drm/drm_encoder_slave.h> 33 + #include <drm/i2c/ch7006.h> 34 34 35 35 typedef int64_t fixed; 36 36 #define fixed1 (1LL << 32)
+4 -4
drivers/gpu/drm/i2c/sil164_drv.c
··· 26 26 27 27 #include <linux/module.h> 28 28 29 - #include "drmP.h" 30 - #include "drm_crtc_helper.h" 31 - #include "drm_encoder_slave.h" 32 - #include "i2c/sil164.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_crtc_helper.h> 31 + #include <drm/drm_encoder_slave.h> 32 + #include <drm/i2c/sil164.h> 33 33 34 34 struct sil164_priv { 35 35 struct sil164_encoder_params config;
+2 -3
drivers/gpu/drm/i810/i810_dma.c
··· 30 30 * 31 31 */ 32 32 33 - #include "drmP.h" 34 - #include "drm.h" 35 - #include "i810_drm.h" 33 + #include <drm/drmP.h> 34 + #include <drm/i810_drm.h> 36 35 #include "i810_drv.h" 37 36 #include <linux/interrupt.h> /* For task queue support */ 38 37 #include <linux/delay.h>
+3 -4
drivers/gpu/drm/i810/i810_drv.c
··· 32 32 33 33 #include <linux/module.h> 34 34 35 - #include "drmP.h" 36 - #include "drm.h" 37 - #include "i810_drm.h" 35 + #include <drm/drmP.h> 36 + #include <drm/i810_drm.h> 38 37 #include "i810_drv.h" 39 38 40 - #include "drm_pciids.h" 39 + #include <drm/drm_pciids.h> 41 40 42 41 static struct pci_device_id pciidlist[] = { 43 42 i810_PCI_IDS
+2 -3
drivers/gpu/drm/i915/dvo.h
··· 24 24 #define _INTEL_DVO_H 25 25 26 26 #include <linux/i2c.h> 27 - #include "drmP.h" 28 - #include "drm.h" 29 - #include "drm_crtc.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc.h> 30 29 #include "intel_drv.h" 31 30 32 31 struct intel_dvo_device {
+2 -3
drivers/gpu/drm/i915/i915_debugfs.c
··· 30 30 #include <linux/debugfs.h> 31 31 #include <linux/slab.h> 32 32 #include <linux/export.h> 33 - #include "drmP.h" 34 - #include "drm.h" 33 + #include <drm/drmP.h> 35 34 #include "intel_drv.h" 36 35 #include "intel_ringbuffer.h" 37 - #include "i915_drm.h" 36 + #include <drm/i915_drm.h> 38 37 #include "i915_drv.h" 39 38 40 39 #define DRM_I915_RING_DEBUG 1
+4 -5
drivers/gpu/drm/i915/i915_dma.c
··· 28 28 29 29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 30 30 31 - #include "drmP.h" 32 - #include "drm.h" 33 - #include "drm_crtc_helper.h" 34 - #include "drm_fb_helper.h" 31 + #include <drm/drmP.h> 32 + #include <drm/drm_crtc_helper.h> 33 + #include <drm/drm_fb_helper.h> 35 34 #include "intel_drv.h" 36 - #include "i915_drm.h" 35 + #include <drm/i915_drm.h> 37 36 #include "i915_drv.h" 38 37 #include "i915_trace.h" 39 38 #include <linux/pci.h>
+3 -4
drivers/gpu/drm/i915/i915_drv.c
··· 28 28 */ 29 29 30 30 #include <linux/device.h> 31 - #include "drmP.h" 32 - #include "drm.h" 33 - #include "i915_drm.h" 31 + #include <drm/drmP.h> 32 + #include <drm/i915_drm.h> 34 33 #include "i915_drv.h" 35 34 #include "i915_trace.h" 36 35 #include "intel_drv.h" 37 36 38 37 #include <linux/console.h> 39 38 #include <linux/module.h> 40 - #include "drm_crtc_helper.h" 39 + #include <drm/drm_crtc_helper.h> 41 40 42 41 static int i915_modeset __read_mostly = -1; 43 42 module_param_named(modeset, i915_modeset, int, 0400);
+2 -3
drivers/gpu/drm/i915/i915_gem.c
··· 25 25 * 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "i915_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/i915_drm.h> 31 30 #include "i915_drv.h" 32 31 #include "i915_trace.h" 33 32 #include "intel_drv.h"
+2 -2
drivers/gpu/drm/i915/i915_gem_context.c
··· 85 85 * 86 86 */ 87 87 88 - #include "drmP.h" 89 - #include "i915_drm.h" 88 + #include <drm/drmP.h> 89 + #include <drm/i915_drm.h> 90 90 #include "i915_drv.h" 91 91 92 92 /* This is a HW constraint. The value below is the largest known requirement
+2 -3
drivers/gpu/drm/i915/i915_gem_debug.c
··· 25 25 * 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "i915_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/i915_drm.h> 31 30 #include "i915_drv.h" 32 31 33 32 #if WATCH_LISTS
+1 -1
drivers/gpu/drm/i915/i915_gem_dmabuf.c
··· 23 23 * Authors: 24 24 * Dave Airlie <airlied@redhat.com> 25 25 */ 26 - #include "drmP.h" 26 + #include <drm/drmP.h> 27 27 #include "i915_drv.h" 28 28 #include <linux/dma-buf.h> 29 29
+2 -3
drivers/gpu/drm/i915/i915_gem_evict.c
··· 26 26 * 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm.h" 29 + #include <drm/drmP.h> 31 30 #include "i915_drv.h" 32 - #include "i915_drm.h" 31 + #include <drm/i915_drm.h> 33 32 #include "i915_trace.h" 34 33 35 34 static bool
+2 -3
drivers/gpu/drm/i915/i915_gem_execbuffer.c
··· 26 26 * 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm.h" 31 - #include "i915_drm.h" 29 + #include <drm/drmP.h> 30 + #include <drm/i915_drm.h> 32 31 #include "i915_drv.h" 33 32 #include "i915_trace.h" 34 33 #include "intel_drv.h"
+2 -3
drivers/gpu/drm/i915/i915_gem_gtt.c
··· 22 22 * 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 27 - #include "i915_drm.h" 25 + #include <drm/drmP.h> 26 + #include <drm/i915_drm.h> 28 27 #include "i915_drv.h" 29 28 #include "i915_trace.h" 30 29 #include "intel_drv.h"
+2 -3
drivers/gpu/drm/i915/i915_gem_stolen.c
··· 26 26 * 27 27 */ 28 28 29 - #include "drmP.h" 30 - #include "drm.h" 31 - #include "i915_drm.h" 29 + #include <drm/drmP.h> 30 + #include <drm/i915_drm.h> 32 31 #include "i915_drv.h" 33 32 34 33 /*
+4 -5
drivers/gpu/drm/i915/i915_gem_tiling.c
··· 25 25 * 26 26 */ 27 27 28 - #include "linux/string.h" 29 - #include "linux/bitops.h" 30 - #include "drmP.h" 31 - #include "drm.h" 32 - #include "i915_drm.h" 28 + #include <linux/string.h> 29 + #include <linux/bitops.h> 30 + #include <drm/drmP.h> 31 + #include <drm/i915_drm.h> 33 32 #include "i915_drv.h" 34 33 35 34 /** @file i915_gem_tiling.c
+2 -3
drivers/gpu/drm/i915/i915_ioc32.c
··· 31 31 */ 32 32 #include <linux/compat.h> 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "i915_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/i915_drm.h> 37 36 #include "i915_drv.h" 38 37 39 38 typedef struct _drm_i915_batchbuffer32 {
+2 -3
drivers/gpu/drm/i915/i915_irq.c
··· 30 30 31 31 #include <linux/sysrq.h> 32 32 #include <linux/slab.h> 33 - #include "drmP.h" 34 - #include "drm.h" 35 - #include "i915_drm.h" 33 + #include <drm/drmP.h> 34 + #include <drm/i915_drm.h> 36 35 #include "i915_drv.h" 37 36 #include "i915_trace.h" 38 37 #include "intel_drv.h"
+2 -3
drivers/gpu/drm/i915/i915_suspend.c
··· 24 24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 29 - #include "i915_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/i915_drm.h> 30 29 #include "intel_drv.h" 31 30 #include "i915_reg.h" 32 31
+1 -1
drivers/gpu/drm/i915/intel_acpi.c
··· 8 8 #include <linux/vga_switcheroo.h> 9 9 #include <acpi/acpi_drivers.h> 10 10 11 - #include "drmP.h" 11 + #include <drm/drmP.h> 12 12 #include "i915_drv.h" 13 13 14 14 #define INTEL_DSM_REVISION_ID 1 /* For Calpella anyway... */
+2 -3
drivers/gpu/drm/i915/intel_bios.c
··· 26 26 */ 27 27 #include <linux/dmi.h> 28 28 #include <drm/drm_dp_helper.h> 29 - #include "drmP.h" 30 - #include "drm.h" 31 - #include "i915_drm.h" 29 + #include <drm/drmP.h> 30 + #include <drm/i915_drm.h> 32 31 #include "i915_drv.h" 33 32 #include "intel_bios.h" 34 33
+1 -1
drivers/gpu/drm/i915/intel_bios.h
··· 28 28 #ifndef _I830_BIOS_H_ 29 29 #define _I830_BIOS_H_ 30 30 31 - #include "drmP.h" 31 + #include <drm/drmP.h> 32 32 33 33 struct vbt_header { 34 34 u8 signature[20]; /**< Always starts with 'VBT$' */
+5 -6
drivers/gpu/drm/i915/intel_crt.c
··· 27 27 #include <linux/dmi.h> 28 28 #include <linux/i2c.h> 29 29 #include <linux/slab.h> 30 - #include "drmP.h" 31 - #include "drm.h" 32 - #include "drm_crtc.h" 33 - #include "drm_crtc_helper.h" 34 - #include "drm_edid.h" 30 + #include <drm/drmP.h> 31 + #include <drm/drm_crtc.h> 32 + #include <drm/drm_crtc_helper.h> 33 + #include <drm/drm_edid.h> 35 34 #include "intel_drv.h" 36 - #include "i915_drm.h" 35 + #include <drm/i915_drm.h> 37 36 #include "i915_drv.h" 38 37 39 38 /* Here's the desired hotplug mode */
+4 -4
drivers/gpu/drm/i915/intel_display.c
··· 32 32 #include <linux/slab.h> 33 33 #include <linux/vgaarb.h> 34 34 #include <drm/drm_edid.h> 35 - #include "drmP.h" 35 + #include <drm/drmP.h> 36 36 #include "intel_drv.h" 37 - #include "i915_drm.h" 37 + #include <drm/i915_drm.h> 38 38 #include "i915_drv.h" 39 39 #include "i915_trace.h" 40 - #include "drm_dp_helper.h" 41 - #include "drm_crtc_helper.h" 40 + #include <drm/drm_dp_helper.h> 41 + #include <drm/drm_crtc_helper.h> 42 42 #include <linux/dma_remapping.h> 43 43 44 44 #define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
+6 -7
drivers/gpu/drm/i915/intel_dp.c
··· 28 28 #include <linux/i2c.h> 29 29 #include <linux/slab.h> 30 30 #include <linux/export.h> 31 - #include "drmP.h" 32 - #include "drm.h" 33 - #include "drm_crtc.h" 34 - #include "drm_crtc_helper.h" 35 - #include "drm_edid.h" 31 + #include <drm/drmP.h> 32 + #include <drm/drm_crtc.h> 33 + #include <drm/drm_crtc_helper.h> 34 + #include <drm/drm_edid.h> 36 35 #include "intel_drv.h" 37 - #include "i915_drm.h" 36 + #include <drm/i915_drm.h> 38 37 #include "i915_drv.h" 39 - #include "drm_dp_helper.h" 38 + #include <drm/drm_dp_helper.h> 40 39 41 40 #define DP_RECEIVER_CAP_SIZE 0xf 42 41 #define DP_LINK_STATUS_SIZE 6
+4 -4
drivers/gpu/drm/i915/intel_drv.h
··· 26 26 #define __INTEL_DRV_H__ 27 27 28 28 #include <linux/i2c.h> 29 - #include "i915_drm.h" 29 + #include <drm/i915_drm.h> 30 30 #include "i915_drv.h" 31 - #include "drm_crtc.h" 32 - #include "drm_crtc_helper.h" 33 - #include "drm_fb_helper.h" 31 + #include <drm/drm_crtc.h> 32 + #include <drm/drm_crtc_helper.h> 33 + #include <drm/drm_fb_helper.h> 34 34 35 35 #define _wait_for(COND, MS, W) ({ \ 36 36 unsigned long timeout__ = jiffies + msecs_to_jiffies(MS); \
+3 -4
drivers/gpu/drm/i915/intel_dvo.c
··· 26 26 */ 27 27 #include <linux/i2c.h> 28 28 #include <linux/slab.h> 29 - #include "drmP.h" 30 - #include "drm.h" 31 - #include "drm_crtc.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_crtc.h> 32 31 #include "intel_drv.h" 33 - #include "i915_drm.h" 32 + #include <drm/i915_drm.h> 34 33 #include "i915_drv.h" 35 34 #include "dvo.h" 36 35
+4 -5
drivers/gpu/drm/i915/intel_fb.c
··· 36 36 #include <linux/init.h> 37 37 #include <linux/vga_switcheroo.h> 38 38 39 - #include "drmP.h" 40 - #include "drm.h" 41 - #include "drm_crtc.h" 42 - #include "drm_fb_helper.h" 39 + #include <drm/drmP.h> 40 + #include <drm/drm_crtc.h> 41 + #include <drm/drm_fb_helper.h> 43 42 #include "intel_drv.h" 44 - #include "i915_drm.h" 43 + #include <drm/i915_drm.h> 45 44 #include "i915_drv.h" 46 45 47 46 static struct fb_ops intelfb_ops = {
+4 -5
drivers/gpu/drm/i915/intel_hdmi.c
··· 29 29 #include <linux/i2c.h> 30 30 #include <linux/slab.h> 31 31 #include <linux/delay.h> 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "drm_crtc.h" 35 - #include "drm_edid.h" 32 + #include <drm/drmP.h> 33 + #include <drm/drm_crtc.h> 34 + #include <drm/drm_edid.h> 36 35 #include "intel_drv.h" 37 - #include "i915_drm.h" 36 + #include <drm/i915_drm.h> 38 37 #include "i915_drv.h" 39 38 40 39 static void
+2 -3
drivers/gpu/drm/i915/intel_i2c.c
··· 29 29 #include <linux/i2c.h> 30 30 #include <linux/i2c-algo-bit.h> 31 31 #include <linux/export.h> 32 - #include "drmP.h" 33 - #include "drm.h" 32 + #include <drm/drmP.h> 34 33 #include "intel_drv.h" 35 - #include "i915_drm.h" 34 + #include <drm/i915_drm.h> 36 35 #include "i915_drv.h" 37 36 38 37 struct gmbus_port {
+4 -5
drivers/gpu/drm/i915/intel_lvds.c
··· 31 31 #include <linux/dmi.h> 32 32 #include <linux/i2c.h> 33 33 #include <linux/slab.h> 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "drm_crtc.h" 37 - #include "drm_edid.h" 34 + #include <drm/drmP.h> 35 + #include <drm/drm_crtc.h> 36 + #include <drm/drm_edid.h> 38 37 #include "intel_drv.h" 39 - #include "i915_drm.h" 38 + #include <drm/i915_drm.h> 40 39 #include "i915_drv.h" 41 40 #include <linux/acpi.h> 42 41
+2 -2
drivers/gpu/drm/i915/intel_modes.c
··· 27 27 #include <linux/i2c.h> 28 28 #include <linux/fb.h> 29 29 #include <drm/drm_edid.h> 30 - #include "drmP.h" 31 - #include "drm_edid.h" 30 + #include <drm/drmP.h> 31 + #include <drm/drm_edid.h> 32 32 #include "intel_drv.h" 33 33 #include "i915_drv.h" 34 34
+2 -2
drivers/gpu/drm/i915/intel_opregion.c
··· 31 31 #include <linux/acpi_io.h> 32 32 #include <acpi/video.h> 33 33 34 - #include "drmP.h" 35 - #include "i915_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/i915_drm.h> 36 36 #include "i915_drv.h" 37 37 #include "intel_drv.h" 38 38
+2 -3
drivers/gpu/drm/i915/intel_overlay.c
··· 25 25 * 26 26 * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c 27 27 */ 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "i915_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/i915_drm.h> 31 30 #include "i915_drv.h" 32 31 #include "i915_reg.h" 33 32 #include "intel_drv.h"
+2 -3
drivers/gpu/drm/i915/intel_ringbuffer.c
··· 27 27 * 28 28 */ 29 29 30 - #include "drmP.h" 31 - #include "drm.h" 30 + #include <drm/drmP.h> 32 31 #include "i915_drv.h" 33 - #include "i915_drm.h" 32 + #include <drm/i915_drm.h> 34 33 #include "i915_trace.h" 35 34 #include "intel_drv.h" 36 35
+4 -5
drivers/gpu/drm/i915/intel_sdvo.c
··· 29 29 #include <linux/slab.h> 30 30 #include <linux/delay.h> 31 31 #include <linux/export.h> 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "drm_crtc.h" 35 - #include "drm_edid.h" 32 + #include <drm/drmP.h> 33 + #include <drm/drm_crtc.h> 34 + #include <drm/drm_edid.h> 36 35 #include "intel_drv.h" 37 - #include "i915_drm.h" 36 + #include <drm/i915_drm.h> 38 37 #include "i915_drv.h" 39 38 #include "intel_sdvo_regs.h" 40 39
+4 -4
drivers/gpu/drm/i915/intel_sprite.c
··· 29 29 * registers; newer ones are much simpler and we can use the new DRM plane 30 30 * support. 31 31 */ 32 - #include "drmP.h" 33 - #include "drm_crtc.h" 34 - #include "drm_fourcc.h" 32 + #include <drm/drmP.h> 33 + #include <drm/drm_crtc.h> 34 + #include <drm/drm_fourcc.h> 35 35 #include "intel_drv.h" 36 - #include "i915_drm.h" 36 + #include <drm/i915_drm.h> 37 37 #include "i915_drv.h" 38 38 39 39 static void
+4 -5
drivers/gpu/drm/i915/intel_tv.c
··· 30 30 * Integrated TV-out support for the 915GM and 945GM. 31 31 */ 32 32 33 - #include "drmP.h" 34 - #include "drm.h" 35 - #include "drm_crtc.h" 36 - #include "drm_edid.h" 33 + #include <drm/drmP.h> 34 + #include <drm/drm_crtc.h> 35 + #include <drm/drm_edid.h> 37 36 #include "intel_drv.h" 38 - #include "i915_drm.h" 37 + #include <drm/i915_drm.h> 39 38 #include "i915_drv.h" 40 39 41 40 enum tv_margin {
+2 -4
drivers/gpu/drm/mga/mga_dma.c
··· 35 35 * \author Gareth Hughes <gareth@valinux.com> 36 36 */ 37 37 38 - #include "drmP.h" 39 - #include "drm.h" 40 - #include "drm_sarea.h" 41 - #include "mga_drm.h" 38 + #include <drm/drmP.h> 39 + #include <drm/mga_drm.h> 42 40 #include "mga_drv.h" 43 41 44 42 #define MGA_DEFAULT_USEC_TIMEOUT 10000
+3 -4
drivers/gpu/drm/mga/mga_drv.c
··· 31 31 32 32 #include <linux/module.h> 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "mga_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/mga_drm.h> 37 36 #include "mga_drv.h" 38 37 39 - #include "drm_pciids.h" 38 + #include <drm/drm_pciids.h> 40 39 41 40 static int mga_driver_device_is_agp(struct drm_device *dev); 42 41
+2 -3
drivers/gpu/drm/mga/mga_ioc32.c
··· 32 32 */ 33 33 #include <linux/compat.h> 34 34 35 - #include "drmP.h" 36 - #include "drm.h" 37 - #include "mga_drm.h" 35 + #include <drm/drmP.h> 36 + #include <drm/mga_drm.h> 38 37 39 38 typedef struct drm32_mga_init { 40 39 int func;
+2 -3
drivers/gpu/drm/mga/mga_irq.c
··· 31 31 * Eric Anholt <anholt@FreeBSD.org> 32 32 */ 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "mga_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/mga_drm.h> 37 36 #include "mga_drv.h" 38 37 39 38 u32 mga_get_vblank_counter(struct drm_device *dev, int crtc)
+2 -3
drivers/gpu/drm/mga/mga_state.c
··· 32 32 * Gareth Hughes <gareth@valinux.com> 33 33 */ 34 34 35 - #include "drmP.h" 36 - #include "drm.h" 37 - #include "mga_drm.h" 35 + #include <drm/drmP.h> 36 + #include <drm/mga_drm.h> 38 37 #include "mga_drv.h" 39 38 40 39 /* ================================================================
+2 -3
drivers/gpu/drm/mga/mga_warp.c
··· 32 32 #include <linux/platform_device.h> 33 33 #include <linux/module.h> 34 34 35 - #include "drmP.h" 36 - #include "drm.h" 37 - #include "mga_drm.h" 35 + #include <drm/drmP.h> 36 + #include <drm/mga_drm.h> 38 37 #include "mga_drv.h" 39 38 40 39 #define FIRMWARE_G200 "matrox/g200_warp.fw"
+2 -3
drivers/gpu/drm/mgag200/mgag200_drv.c
··· 10 10 */ 11 11 #include <linux/module.h> 12 12 #include <linux/console.h> 13 - #include "drmP.h" 14 - #include "drm.h" 13 + #include <drm/drmP.h> 15 14 16 15 #include "mgag200_drv.h" 17 16 18 - #include "drm_pciids.h" 17 + #include <drm/drm_pciids.h> 19 18 20 19 /* 21 20 * This is the generic driver code. This binds the driver to the drm core,
+6 -6
drivers/gpu/drm/mgag200/mgag200_drv.h
··· 15 15 16 16 #include <video/vga.h> 17 17 18 - #include "drm/drm_fb_helper.h" 19 - #include "ttm/ttm_bo_api.h" 20 - #include "ttm/ttm_bo_driver.h" 21 - #include "ttm/ttm_placement.h" 22 - #include "ttm/ttm_memory.h" 23 - #include "ttm/ttm_module.h" 18 + #include <drm/drm_fb_helper.h> 19 + #include <drm/ttm/ttm_bo_api.h> 20 + #include <drm/ttm/ttm_bo_driver.h> 21 + #include <drm/ttm/ttm_placement.h> 22 + #include <drm/ttm/ttm_memory.h> 23 + #include <drm/ttm/ttm_module.h> 24 24 25 25 #include <linux/i2c.h> 26 26 #include <linux/i2c-algo-bit.h>
+2 -3
drivers/gpu/drm/mgag200/mgag200_fb.c
··· 11 11 * Dave Airlie 12 12 */ 13 13 #include <linux/module.h> 14 - #include "drmP.h" 15 - #include "drm.h" 16 - #include "drm_fb_helper.h" 14 + #include <drm/drmP.h> 15 + #include <drm/drm_fb_helper.h> 17 16 18 17 #include <linux/fb.h> 19 18
+1 -2
drivers/gpu/drm/mgag200/mgag200_i2c.c
··· 28 28 #include <linux/export.h> 29 29 #include <linux/i2c.h> 30 30 #include <linux/i2c-algo-bit.h> 31 - #include "drmP.h" 32 - #include "drm.h" 31 + #include <drm/drmP.h> 33 32 34 33 #include "mgag200_drv.h" 35 34
+2 -3
drivers/gpu/drm/mgag200/mgag200_main.c
··· 10 10 * Matt Turner 11 11 * Dave Airlie 12 12 */ 13 - #include "drmP.h" 14 - #include "drm.h" 15 - #include "drm_crtc_helper.h" 13 + #include <drm/drmP.h> 14 + #include <drm/drm_crtc_helper.h> 16 15 #include "mgag200_drv.h" 17 16 18 17 static void mga_user_framebuffer_destroy(struct drm_framebuffer *fb)
+2 -3
drivers/gpu/drm/mgag200/mgag200_mode.c
··· 13 13 14 14 #include <linux/delay.h> 15 15 16 - #include "drmP.h" 17 - #include "drm.h" 18 - #include "drm_crtc_helper.h" 16 + #include <drm/drmP.h> 17 + #include <drm/drm_crtc_helper.h> 19 18 20 19 #include "mgag200_drv.h" 21 20
+1 -1
drivers/gpu/drm/mgag200/mgag200_ttm.c
··· 25 25 /* 26 26 * Authors: Dave Airlie <airlied@redhat.com> 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "mgag200_drv.h" 30 30 #include <ttm/ttm_page_alloc.h> 31 31
+1 -1
drivers/gpu/drm/nouveau/nouveau_abi16.c
··· 21 21 * 22 22 */ 23 23 24 - #include "drmP.h" 24 + #include <drm/drmP.h> 25 25 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h"
+3 -5
drivers/gpu/drm/nouveau/nouveau_acpi.c
··· 7 7 #include <acpi/acpi.h> 8 8 #include <linux/mxm-wmi.h> 9 9 10 - #include "drmP.h" 11 - #include "drm.h" 12 - #include "drm_sarea.h" 13 - #include "drm_crtc_helper.h" 10 + #include <drm/drmP.h> 11 + #include <drm/drm_crtc_helper.h> 14 12 #include "nouveau_drv.h" 15 - #include "nouveau_drm.h" 13 + #include <drm/nouveau_drm.h> 16 14 #include "nv50_display.h" 17 15 #include "nouveau_connector.h" 18 16
+2 -2
drivers/gpu/drm/nouveau/nouveau_backlight.c
··· 33 33 #include <linux/backlight.h> 34 34 #include <linux/acpi.h> 35 35 36 - #include "drmP.h" 36 + #include <drm/drmP.h> 37 37 #include "nouveau_drv.h" 38 - #include "nouveau_drm.h" 38 + #include <drm/nouveau_drm.h> 39 39 #include "nouveau_reg.h" 40 40 #include "nouveau_encoder.h" 41 41
+1 -1
drivers/gpu/drm/nouveau/nouveau_bios.c
··· 22 22 * SOFTWARE. 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #define NV_DEBUG_NOTRACE 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_hw.h"
+3 -3
drivers/gpu/drm/nouveau/nouveau_bo.c
··· 27 27 * Jeremy Kolb <jkolb@brandeis.edu> 28 28 */ 29 29 30 - #include "drmP.h" 31 - #include "ttm/ttm_page_alloc.h" 30 + #include <drm/drmP.h> 31 + #include <drm/ttm/ttm_page_alloc.h> 32 32 33 - #include "nouveau_drm.h" 33 + #include <drm/nouveau_drm.h> 34 34 #include "nouveau_drv.h" 35 35 #include "nouveau_dma.h" 36 36 #include "nouveau_mm.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_calc.c
··· 21 21 * SOFTWARE. 22 22 */ 23 23 24 - #include "drmP.h" 24 + #include <drm/drmP.h> 25 25 #include "nouveau_drv.h" 26 26 #include "nouveau_hw.h" 27 27
+2 -3
drivers/gpu/drm/nouveau/nouveau_channel.c
··· 22 22 * DEALINGS IN THE SOFTWARE. 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 25 + #include <drm/drmP.h> 27 26 #include "nouveau_drv.h" 28 - #include "nouveau_drm.h" 27 + #include <drm/nouveau_drm.h> 29 28 #include "nouveau_dma.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_ramht.h"
+3 -3
drivers/gpu/drm/nouveau/nouveau_connector.c
··· 26 26 27 27 #include <acpi/button.h> 28 28 29 - #include "drmP.h" 30 - #include "drm_edid.h" 31 - #include "drm_crtc_helper.h" 29 + #include <drm/drmP.h> 30 + #include <drm/drm_edid.h> 31 + #include <drm/drm_crtc_helper.h> 32 32 33 33 #include "nouveau_reg.h" 34 34 #include "nouveau_drv.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_connector.h
··· 27 27 #ifndef __NOUVEAU_CONNECTOR_H__ 28 28 #define __NOUVEAU_CONNECTOR_H__ 29 29 30 - #include "drm_edid.h" 30 + #include <drm/drm_edid.h> 31 31 #include "nouveau_i2c.h" 32 32 33 33 enum nouveau_underscan_type {
+1 -1
drivers/gpu/drm/nouveau/nouveau_debugfs.c
··· 30 30 31 31 #include <linux/debugfs.h> 32 32 33 - #include "drmP.h" 33 + #include <drm/drmP.h> 34 34 #include "nouveau_drv.h" 35 35 36 36 #include <ttm/ttm_page_alloc.h>
+2 -2
drivers/gpu/drm/nouveau/nouveau_display.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 #include "nouveau_drv.h" 30 30 #include "nouveau_fb.h" 31 31 #include "nouveau_fbcon.h"
+1 -2
drivers/gpu/drm/nouveau/nouveau_dma.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_dma.h" 31 30 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_dp.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_i2c.h"
+3 -4
drivers/gpu/drm/nouveau/nouveau_drv.c
··· 25 25 #include <linux/console.h> 26 26 #include <linux/module.h> 27 27 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "drm_crtc_helper.h" 28 + #include <drm/drmP.h> 29 + #include <drm/drm_crtc_helper.h> 31 30 #include "nouveau_drv.h" 32 31 #include "nouveau_abi16.h" 33 32 #include "nouveau_hw.h" ··· 36 37 #include "nouveau_fifo.h" 37 38 #include "nv50_display.h" 38 39 39 - #include "drm_pciids.h" 40 + #include <drm/drm_pciids.h> 40 41 41 42 MODULE_PARM_DESC(agpmode, "AGP mode (0 to disable AGP)"); 42 43 int nouveau_agpmode = -1;
+6 -6
drivers/gpu/drm/nouveau/nouveau_drv.h
··· 39 39 #define NOUVEAU_FAMILY 0x0000FFFF 40 40 #define NOUVEAU_FLAGS 0xFFFF0000 41 41 42 - #include "ttm/ttm_bo_api.h" 43 - #include "ttm/ttm_bo_driver.h" 44 - #include "ttm/ttm_placement.h" 45 - #include "ttm/ttm_memory.h" 46 - #include "ttm/ttm_module.h" 42 + #include <drm/ttm/ttm_bo_api.h> 43 + #include <drm/ttm/ttm_bo_driver.h> 44 + #include <drm/ttm/ttm_placement.h> 45 + #include <drm/ttm/ttm_memory.h> 46 + #include <drm/ttm/ttm_module.h> 47 47 48 48 struct nouveau_fpriv { 49 49 spinlock_t lock; ··· 59 59 60 60 #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT) 61 61 62 - #include "nouveau_drm.h" 62 + #include <drm/nouveau_drm.h> 63 63 #include "nouveau_reg.h" 64 64 #include "nouveau_bios.h" 65 65 #include "nouveau_util.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_encoder.h
··· 27 27 #ifndef __NOUVEAU_ENCODER_H__ 28 28 #define __NOUVEAU_ENCODER_H__ 29 29 30 - #include "drm_encoder_slave.h" 30 + #include <drm/drm_encoder_slave.h> 31 31 #include "nouveau_drv.h" 32 32 33 33 #define NV_DPMS_CLEARED 0x80
+5 -6
drivers/gpu/drm/nouveau/nouveau_fbcon.c
··· 38 38 #include <linux/vga_switcheroo.h> 39 39 #include <linux/console.h> 40 40 41 - #include "drmP.h" 42 - #include "drm.h" 43 - #include "drm_crtc.h" 44 - #include "drm_crtc_helper.h" 45 - #include "drm_fb_helper.h" 41 + #include <drm/drmP.h> 42 + #include <drm/drm_crtc.h> 43 + #include <drm/drm_crtc_helper.h> 44 + #include <drm/drm_fb_helper.h> 46 45 #include "nouveau_drv.h" 47 - #include "nouveau_drm.h" 46 + #include <drm/nouveau_drm.h> 48 47 #include "nouveau_crtc.h" 49 48 #include "nouveau_fb.h" 50 49 #include "nouveau_fbcon.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_fbcon.h
··· 27 27 #ifndef __NOUVEAU_FBCON_H__ 28 28 #define __NOUVEAU_FBCON_H__ 29 29 30 - #include "drm_fb_helper.h" 30 + #include <drm/drm_fb_helper.h> 31 31 32 32 #include "nouveau_fb.h" 33 33 struct nouveau_fbdev {
+1 -2
drivers/gpu/drm/nouveau/nouveau_fence.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 30 29 #include <linux/ktime.h> 31 30 #include <linux/hrtimer.h>
+2 -3
drivers/gpu/drm/nouveau/nouveau_gem.c
··· 24 24 * 25 25 */ 26 26 #include <linux/dma-buf.h> 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 30 29 #include "nouveau_drv.h" 31 - #include "nouveau_drm.h" 30 + #include <drm/nouveau_drm.h> 32 31 #include "nouveau_dma.h" 33 32 #include "nouveau_fence.h" 34 33
+1 -1
drivers/gpu/drm/nouveau/nouveau_gpio.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_i2c.h" 28 28 #include "nouveau_gpio.h"
+2 -3
drivers/gpu/drm/nouveau/nouveau_gpuobj.c
··· 30 30 * Ben Skeggs <darktama@iinet.net.au> 31 31 */ 32 32 33 - #include "drmP.h" 34 - #include "drm.h" 33 + #include <drm/drmP.h> 35 34 #include "nouveau_drv.h" 36 - #include "nouveau_drm.h" 35 + #include <drm/nouveau_drm.h> 37 36 #include "nouveau_fifo.h" 38 37 #include "nouveau_ramht.h" 39 38 #include "nouveau_software.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_hdmi.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_connector.h" 28 28 #include "nouveau_encoder.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_hw.c
··· 22 22 * SOFTWARE. 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_hw.h" 28 28
+1 -1
drivers/gpu/drm/nouveau/nouveau_hw.h
··· 23 23 #ifndef __NOUVEAU_HW_H__ 24 24 #define __NOUVEAU_HW_H__ 25 25 26 - #include "drmP.h" 26 + #include <drm/drmP.h> 27 27 #include "nouveau_drv.h" 28 28 29 29 #define MASK(field) ( \
+1 -1
drivers/gpu/drm/nouveau/nouveau_i2c.c
··· 24 24 25 25 #include <linux/module.h> 26 26 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 #include "nouveau_drv.h" 29 29 #include "nouveau_i2c.h" 30 30 #include "nouveau_hw.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_i2c.h
··· 25 25 26 26 #include <linux/i2c.h> 27 27 #include <linux/i2c-algo-bit.h> 28 - #include "drm_dp_helper.h" 28 + #include <drm/drm_dp_helper.h> 29 29 30 30 #define NV_I2C_PORT(n) (0x00 + (n)) 31 31 #define NV_I2C_PORT_NUM 0x10
+1 -2
drivers/gpu/drm/nouveau/nouveau_ioc32.c
··· 33 33 34 34 #include <linux/compat.h> 35 35 36 - #include "drmP.h" 37 - #include "drm.h" 36 + #include <drm/drmP.h> 38 37 39 38 #include "nouveau_drv.h" 40 39
+2 -3
drivers/gpu/drm/nouveau/nouveau_irq.c
··· 30 30 * Ben Skeggs <darktama@iinet.net.au> 31 31 */ 32 32 33 - #include "drmP.h" 34 - #include "drm.h" 35 - #include "nouveau_drm.h" 33 + #include <drm/drmP.h> 34 + #include <drm/nouveau_drm.h> 36 35 #include "nouveau_drv.h" 37 36 #include "nouveau_reg.h" 38 37 #include "nouveau_ramht.h"
+1 -3
drivers/gpu/drm/nouveau/nouveau_mem.c
··· 31 31 */ 32 32 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "drm_sarea.h" 34 + #include <drm/drmP.h> 37 35 38 36 #include "nouveau_drv.h" 39 37 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_mm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_mm.h" 28 28
+1 -1
drivers/gpu/drm/nouveau/nouveau_mxm.c
··· 24 24 25 25 #include <linux/acpi.h> 26 26 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 #include "nouveau_drv.h" 29 29 30 30 #define MXM_DBG(dev, fmt, args...) NV_DEBUG((dev), "MXM: " fmt, ##args)
+1 -2
drivers/gpu/drm/nouveau/nouveau_notifier.c
··· 25 25 * 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "drm.h" 28 + #include <drm/drmP.h> 30 29 #include "nouveau_drv.h" 31 30 #include "nouveau_ramht.h" 32 31
+1 -1
drivers/gpu/drm/nouveau/nouveau_perf.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_pm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_pm.h"
+2 -3
drivers/gpu/drm/nouveau/nouveau_prime.c
··· 22 22 * Authors: Dave Airlie 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 25 + #include <drm/drmP.h> 27 26 28 27 #include "nouveau_drv.h" 29 - #include "nouveau_drm.h" 28 + #include <drm/nouveau_drm.h> 30 29 #include "nouveau_dma.h" 31 30 32 31 #include <linux/dma-buf.h>
+1 -1
drivers/gpu/drm/nouveau/nouveau_ramht.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_sgdma.c
··· 1 - #include "drmP.h" 1 + #include <drm/drmP.h> 2 2 #include "nouveau_drv.h" 3 3 #include <linux/pagemap.h> 4 4 #include <linux/slab.h>
+3 -5
drivers/gpu/drm/nouveau/nouveau_state.c
··· 25 25 26 26 #include <linux/swab.h> 27 27 #include <linux/slab.h> 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "drm_sarea.h" 31 - #include "drm_crtc_helper.h" 28 + #include <drm/drmP.h> 29 + #include <drm/drm_crtc_helper.h> 32 30 #include <linux/vgaarb.h> 33 31 #include <linux/vga_switcheroo.h> 34 32 35 33 #include "nouveau_drv.h" 36 - #include "nouveau_drm.h" 34 + #include <drm/nouveau_drm.h> 37 35 #include "nouveau_fbcon.h" 38 36 #include "nouveau_ramht.h" 39 37 #include "nouveau_gpio.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_temp.c
··· 24 24 25 25 #include <linux/module.h> 26 26 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 29 29 #include "nouveau_drv.h" 30 30 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_ttm.c
··· 24 24 * USE OR OTHER DEALINGS IN THE SOFTWARE. 25 25 */ 26 26 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 29 29 #include "nouveau_drv.h" 30 30
+1 -1
drivers/gpu/drm/nouveau/nouveau_vm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_mm.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_vm.h
··· 25 25 #ifndef __NOUVEAU_VM_H__ 26 26 #define __NOUVEAU_VM_H__ 27 27 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 30 30 #include "nouveau_drv.h" 31 31 #include "nouveau_mm.h"
+1 -1
drivers/gpu/drm/nouveau/nouveau_volt.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_pm.h"
+2 -2
drivers/gpu/drm/nouveau/nv04_crtc.c
··· 23 23 * DEALINGS IN THE SOFTWARE. 24 24 */ 25 25 26 - #include "drmP.h" 27 - #include "drm_crtc_helper.h" 26 + #include <drm/drmP.h> 27 + #include <drm/drm_crtc_helper.h> 28 28 29 29 #include "nouveau_drv.h" 30 30 #include "nouveau_encoder.h"
+1 -2
drivers/gpu/drm/nouveau/nv04_cursor.c
··· 1 - #include "drmP.h" 2 - #include "drm_mode.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_reg.h" 4 3 #include "nouveau_drv.h" 5 4 #include "nouveau_crtc.h"
+2 -2
drivers/gpu/drm/nouveau/nv04_dac.c
··· 24 24 * DEALINGS IN THE SOFTWARE. 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 30 30 #include "nouveau_drv.h" 31 31 #include "nouveau_encoder.h"
+3 -3
drivers/gpu/drm/nouveau/nv04_dfp.c
··· 24 24 * DEALINGS IN THE SOFTWARE. 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 30 30 #include "nouveau_drv.h" 31 31 #include "nouveau_encoder.h" ··· 34 34 #include "nouveau_hw.h" 35 35 #include "nvreg.h" 36 36 37 - #include "i2c/sil164.h" 37 + #include <drm/i2c/sil164.h> 38 38 39 39 #define FP_TG_CONTROL_ON (NV_PRAMDAC_FP_TG_CONTROL_DISPEN_POS | \ 40 40 NV_PRAMDAC_FP_TG_CONTROL_HSYNC_POS | \
+2 -3
drivers/gpu/drm/nouveau/nv04_display.c
··· 22 22 * Author: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 27 - #include "drm_crtc_helper.h" 25 + #include <drm/drmP.h> 26 + #include <drm/drm_crtc_helper.h> 28 27 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fb.h"
+2 -3
drivers/gpu/drm/nouveau/nv04_fb.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 int 7 6 nv04_fb_vram_init(struct drm_device *dev)
+1 -1
drivers/gpu/drm/nouveau/nv04_fbcon.c
··· 22 22 * DEALINGS IN THE SOFTWARE. 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nv04_fence.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_ramht.h"
+1 -2
drivers/gpu/drm/nouveau/nv04_fifo.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_util.h"
+2 -3
drivers/gpu/drm/nouveau/nv04_graph.c
··· 22 22 * DEALINGS IN THE SOFTWARE. 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 27 - #include "nouveau_drm.h" 25 + #include <drm/drmP.h> 26 + #include <drm/nouveau_drm.h> 28 27 #include "nouveau_drv.h" 29 28 #include "nouveau_hw.h" 30 29 #include "nouveau_util.h"
+1 -2
drivers/gpu/drm/nouveau/nv04_instmem.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 4 3 #include "nouveau_drv.h" 5 4 #include "nouveau_fifo.h"
+2 -3
drivers/gpu/drm/nouveau/nv04_mc.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 int 7 6 nv04_mc_init(struct drm_device *dev)
+1 -1
drivers/gpu/drm/nouveau/nv04_pm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_hw.h" 28 28 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nv04_software.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_ramht.h"
+2 -3
drivers/gpu/drm/nouveau/nv04_timer.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 #include "nouveau_hw.h" 6 5 7 6 int
+3 -3
drivers/gpu/drm/nouveau/nv04_tv.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 #include "nouveau_drv.h" 29 29 #include "nouveau_encoder.h" 30 30 #include "nouveau_connector.h" 31 31 #include "nouveau_crtc.h" 32 32 #include "nouveau_hw.h" 33 - #include "drm_crtc_helper.h" 33 + #include <drm/drm_crtc_helper.h> 34 34 35 - #include "i2c/ch7006.h" 35 + #include <drm/i2c/ch7006.h> 36 36 37 37 static struct i2c_board_info nv04_tv_encoder_info[] = { 38 38 {
+2 -3
drivers/gpu/drm/nouveau/nv10_fb.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 void 7 6 nv10_fb_init_tile_region(struct drm_device *dev, int i, uint32_t addr,
+1 -1
drivers/gpu/drm/nouveau/nv10_fence.c
··· 22 22 * Authors: Ben Skeggs <bskeggs@redhat.com> 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_ramht.h"
+1 -2
drivers/gpu/drm/nouveau/nv10_fifo.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_util.h"
+1 -1
drivers/gpu/drm/nouveau/nv10_gpio.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 #include "nouveau_drv.h" 29 29 #include "nouveau_hw.h" 30 30 #include "nouveau_gpio.h"
+2 -3
drivers/gpu/drm/nouveau/nv10_graph.c
··· 22 22 * DEALINGS IN THE SOFTWARE. 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 27 - #include "nouveau_drm.h" 25 + #include <drm/drmP.h> 26 + #include <drm/nouveau_drm.h> 28 27 #include "nouveau_drv.h" 29 28 #include "nouveau_util.h" 30 29
+1 -2
drivers/gpu/drm/nouveau/nv17_fifo.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_util.h"
+2 -2
drivers/gpu/drm/nouveau/nv17_tv.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 #include "nouveau_drv.h" 30 30 #include "nouveau_encoder.h" 31 31 #include "nouveau_connector.h"
+2 -2
drivers/gpu/drm/nouveau/nv17_tv_modes.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 #include "nouveau_drv.h" 30 30 #include "nouveau_encoder.h" 31 31 #include "nouveau_crtc.h"
+2 -3
drivers/gpu/drm/nouveau/nv20_fb.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 static struct drm_mm_node * 7 6 nv20_fb_alloc_tag(struct drm_device *dev, uint32_t size)
+2 -3
drivers/gpu/drm/nouveau/nv20_graph.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 /* 7 6 * NV20
+2 -3
drivers/gpu/drm/nouveau/nv30_fb.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 - #include "nouveau_drm.h" 29 + #include <drm/nouveau_drm.h> 31 30 32 31 void 33 32 nv30_fb_init_tile_region(struct drm_device *dev, int i, uint32_t addr,
+1 -1
drivers/gpu/drm/nouveau/nv31_mpeg.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_fifo.h" 28 28 #include "nouveau_ramht.h"
+2 -3
drivers/gpu/drm/nouveau/nv40_fb.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 void 7 6 nv40_fb_set_tile_region(struct drm_device *dev, int i)
+1 -2
drivers/gpu/drm/nouveau/nv40_fifo.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_util.h"
+1 -2
drivers/gpu/drm/nouveau/nv40_graph.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nv40_grctx.c
··· 109 109 #define CP_LOAD_MAGIC_NV44TCL 0x00800029 /* per-vs state (0x4497) */ 110 110 #define CP_LOAD_MAGIC_NV40TCL 0x00800041 /* per-vs state (0x4097) */ 111 111 112 - #include "drmP.h" 112 + #include <drm/drmP.h> 113 113 #include "nouveau_drv.h" 114 114 #include "nouveau_grctx.h" 115 115
+2 -3
drivers/gpu/drm/nouveau/nv40_mc.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 6 5 int 7 6 nv40_mc_init(struct drm_device *dev)
+1 -1
drivers/gpu/drm/nouveau/nv40_pm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_bios.h" 28 28 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_calc.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_hw.h" 28 28
+2 -3
drivers/gpu/drm/nouveau/nv50_crtc.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_mode.h" 29 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 30 29 31 30 #define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO) 32 31 #include "nouveau_reg.h"
+1 -2
drivers/gpu/drm/nouveau/nv50_cursor.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_mode.h" 27 + #include <drm/drmP.h> 29 28 30 29 #define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO) 31 30 #include "nouveau_reg.h"
+2 -2
drivers/gpu/drm/nouveau/nv50_dac.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 30 30 #define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO) 31 31 #include "nouveau_reg.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_display.c
··· 33 33 #include "nouveau_fbcon.h" 34 34 #include "nouveau_ramht.h" 35 35 #include "nouveau_software.h" 36 - #include "drm_crtc_helper.h" 36 + #include <drm/drm_crtc_helper.h> 37 37 38 38 static void nv50_display_isr(struct drm_device *); 39 39 static void nv50_display_bh(unsigned long);
+1 -2
drivers/gpu/drm/nouveau/nv50_display.h
··· 27 27 #ifndef __NV50_DISPLAY_H__ 28 28 #define __NV50_DISPLAY_H__ 29 29 30 - #include "drmP.h" 31 - #include "drm.h" 30 + #include <drm/drmP.h> 32 31 #include "nouveau_drv.h" 33 32 #include "nouveau_dma.h" 34 33 #include "nouveau_reg.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_evo.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_dma.h"
+2 -3
drivers/gpu/drm/nouveau/nv50_fb.c
··· 1 - #include "drmP.h" 2 - #include "drm.h" 1 + #include <drm/drmP.h> 3 2 #include "nouveau_drv.h" 4 - #include "nouveau_drm.h" 3 + #include <drm/nouveau_drm.h> 5 4 #include "nouveau_fifo.h" 6 5 7 6 struct nv50_fb_priv {
+1 -1
drivers/gpu/drm/nouveau/nv50_fbcon.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_ramht.h"
+1 -2
drivers/gpu/drm/nouveau/nv50_fifo.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_gpio.c
··· 23 23 */ 24 24 25 25 #include <linux/dmi.h> 26 - #include "drmP.h" 26 + #include <drm/drmP.h> 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_hw.h" 29 29 #include "nouveau_gpio.h"
+1 -2
drivers/gpu/drm/nouveau/nv50_graph.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_grctx.c
··· 105 105 #define CP_SEEK_1 0x00c000ff 106 106 #define CP_SEEK_2 0x00c800ff 107 107 108 - #include "drmP.h" 108 + #include <drm/drmP.h> 109 109 #include "nouveau_drv.h" 110 110 #include "nouveau_grctx.h" 111 111
+1 -2
drivers/gpu/drm/nouveau/nv50_instmem.c
··· 25 25 * 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "drm.h" 28 + #include <drm/drmP.h> 30 29 31 30 #include "nouveau_drv.h" 32 31 #include "nouveau_vm.h"
+1 -2
drivers/gpu/drm/nouveau/nv50_mc.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 31 30 int
+1 -1
drivers/gpu/drm/nouveau/nv50_mpeg.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_ramht.h" 28 28
+1 -1
drivers/gpu/drm/nouveau/nv50_pm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_bios.h" 28 28 #include "nouveau_hw.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_software.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_ramht.h"
+2 -2
drivers/gpu/drm/nouveau/nv50_sor.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 30 30 #define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO) 31 31 #include "nouveau_reg.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_vm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nv50_vram.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_mm.h" 28 28
+1 -1
drivers/gpu/drm/nouveau/nv84_bsp.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_util.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nv84_crypt.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_util.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nv84_fence.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_fifo.h"
+1 -2
drivers/gpu/drm/nouveau/nv84_fifo.c
··· 24 24 * 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "nouveau_drv.h" 30 29 #include "nouveau_fifo.h" 31 30 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nv84_vp.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_util.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nv98_crypt.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_util.h"
+1 -1
drivers/gpu/drm/nouveau/nv98_ppp.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_util.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nva3_copy.c
··· 23 23 */ 24 24 25 25 #include <linux/firmware.h> 26 - #include "drmP.h" 26 + #include <drm/drmP.h> 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_util.h" 29 29 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nva3_pm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_bios.h" 28 28 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_copy.c
··· 23 23 */ 24 24 25 25 #include <linux/firmware.h> 26 - #include "drmP.h" 26 + #include <drm/drmP.h> 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_util.h" 29 29 #include "nouveau_vm.h"
+2 -3
drivers/gpu/drm/nouveau/nvc0_fb.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 26 - #include "drm.h" 25 + #include <drm/drmP.h> 27 26 #include "nouveau_drv.h" 28 - #include "nouveau_drm.h" 27 + #include <drm/nouveau_drm.h> 29 28 30 29 struct nvc0_fb_priv { 31 30 struct page *r100c10_page;
+1 -1
drivers/gpu/drm/nouveau/nvc0_fbcon.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_fence.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_dma.h" 28 28 #include "nouveau_fifo.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_fifo.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_mm.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_graph.c
··· 25 25 #include <linux/firmware.h> 26 26 #include <linux/module.h> 27 27 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 30 30 #include "nouveau_drv.h" 31 31 #include "nouveau_mm.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_grctx.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_mm.h" 28 28 #include "nvc0_graph.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_instmem.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_pm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_bios.h" 28 28 #include "nouveau_pm.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_software.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_ramht.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_vm.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_vm.h"
+1 -1
drivers/gpu/drm/nouveau/nvc0_vram.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_mm.h" 28 28
+2 -2
drivers/gpu/drm/nouveau/nvd0_display.c
··· 24 24 25 25 #include <linux/dma-mapping.h> 26 26 27 - #include "drmP.h" 28 - #include "drm_crtc_helper.h" 27 + #include <drm/drmP.h> 28 + #include <drm/drm_crtc_helper.h> 29 29 30 30 #include "nouveau_drv.h" 31 31 #include "nouveau_connector.h"
+1 -1
drivers/gpu/drm/nouveau/nve0_fifo.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 27 27 #include "nouveau_drv.h" 28 28 #include "nouveau_mm.h"
+1 -1
drivers/gpu/drm/nouveau/nve0_graph.c
··· 25 25 #include <linux/firmware.h> 26 26 #include <linux/module.h> 27 27 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 30 30 #include "nouveau_drv.h" 31 31 #include "nouveau_mm.h"
+1 -1
drivers/gpu/drm/nouveau/nve0_grctx.c
··· 22 22 * Authors: Ben Skeggs 23 23 */ 24 24 25 - #include "drmP.h" 25 + #include <drm/drmP.h> 26 26 #include "nouveau_drv.h" 27 27 #include "nouveau_mm.h" 28 28 #include "nve0_graph.h"
+2 -3
drivers/gpu/drm/r128/r128_cce.c
··· 34 34 #include <linux/slab.h> 35 35 #include <linux/module.h> 36 36 37 - #include "drmP.h" 38 - #include "drm.h" 39 - #include "r128_drm.h" 37 + #include <drm/drmP.h> 38 + #include <drm/r128_drm.h> 40 39 #include "r128_drv.h" 41 40 42 41 #define R128_FIFO_DEBUG 0
+3 -4
drivers/gpu/drm/r128/r128_drv.c
··· 31 31 32 32 #include <linux/module.h> 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "r128_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/r128_drm.h> 37 36 #include "r128_drv.h" 38 37 39 - #include "drm_pciids.h" 38 + #include <drm/drm_pciids.h> 40 39 41 40 static struct pci_device_id pciidlist[] = { 42 41 r128_PCI_IDS
+2 -3
drivers/gpu/drm/r128/r128_ioc32.c
··· 31 31 */ 32 32 #include <linux/compat.h> 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "r128_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/r128_drm.h> 37 36 38 37 typedef struct drm_r128_init32 { 39 38 int func;
+2 -3
drivers/gpu/drm/r128/r128_irq.c
··· 30 30 * Eric Anholt <anholt@FreeBSD.org> 31 31 */ 32 32 33 - #include "drmP.h" 34 - #include "drm.h" 35 - #include "r128_drm.h" 33 + #include <drm/drmP.h> 34 + #include <drm/r128_drm.h> 36 35 #include "r128_drv.h" 37 36 38 37 u32 r128_get_vblank_counter(struct drm_device *dev, int crtc)
+2 -3
drivers/gpu/drm/r128/r128_state.c
··· 28 28 * Gareth Hughes <gareth@valinux.com> 29 29 */ 30 30 31 - #include "drmP.h" 32 - #include "drm.h" 33 - #include "r128_drm.h" 31 + #include <drm/drmP.h> 32 + #include <drm/r128_drm.h> 34 33 #include "r128_drv.h" 35 34 36 35 /* ================================================================
+1 -1
drivers/gpu/drm/radeon/atom.h
··· 26 26 #define ATOM_H 27 27 28 28 #include <linux/types.h> 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 31 31 #define ATOM_BIOS_MAGIC 0xAA55 32 32 #define ATOM_ATI_MAGIC_PTR 0x30
+3 -3
drivers/gpu/drm/radeon/atombios_dp.c
··· 24 24 * Alex Deucher 25 25 * Jerome Glisse 26 26 */ 27 - #include "drmP.h" 28 - #include "radeon_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon.h" 30 30 31 31 #include "atom.h" 32 32 #include "atom-bits.h" 33 - #include "drm_dp_helper.h" 33 + #include <drm/drm_dp_helper.h> 34 34 35 35 /* move these to drm_dp_helper.c/h */ 36 36 #define DP_LINK_CONFIGURATION_SIZE 9
+3 -3
drivers/gpu/drm/radeon/atombios_encoders.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "drm_crtc_helper.h" 28 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/drm_crtc_helper.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon.h" 30 30 #include "atom.h" 31 31
+2 -2
drivers/gpu/drm/radeon/atombios_i2c.c
··· 22 22 * Authors: Alex Deucher 23 23 * 24 24 */ 25 - #include "drmP.h" 26 - #include "radeon_drm.h" 25 + #include <drm/drmP.h> 26 + #include <drm/radeon_drm.h> 27 27 #include "radeon.h" 28 28 #include "atom.h" 29 29
+2 -2
drivers/gpu/drm/radeon/evergreen.c
··· 24 24 #include <linux/firmware.h> 25 25 #include <linux/platform_device.h> 26 26 #include <linux/slab.h> 27 - #include "drmP.h" 27 + #include <drm/drmP.h> 28 28 #include "radeon.h" 29 29 #include "radeon_asic.h" 30 - #include "radeon_drm.h" 30 + #include <drm/radeon_drm.h> 31 31 #include "evergreend.h" 32 32 #include "atom.h" 33 33 #include "avivod.h"
+2 -3
drivers/gpu/drm/radeon/evergreen_blit_kms.c
··· 24 24 * Alex Deucher <alexander.deucher@amd.com> 25 25 */ 26 26 27 - #include "drmP.h" 28 - #include "drm.h" 29 - #include "radeon_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/radeon_drm.h> 30 29 #include "radeon.h" 31 30 32 31 #include "evergreend.h"
+1 -1
drivers/gpu/drm/radeon/evergreen_cs.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "radeon.h" 30 30 #include "evergreend.h" 31 31 #include "evergreen_reg_safe.h"
+2 -2
drivers/gpu/drm/radeon/evergreen_hdmi.c
··· 24 24 * Authors: Christian König 25 25 * Rafał Miłecki 26 26 */ 27 - #include "drmP.h" 28 - #include "radeon_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon.h" 30 30 #include "radeon_asic.h" 31 31 #include "evergreend.h"
+2 -2
drivers/gpu/drm/radeon/ni.c
··· 25 25 #include <linux/platform_device.h> 26 26 #include <linux/slab.h> 27 27 #include <linux/module.h> 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "radeon.h" 30 30 #include "radeon_asic.h" 31 - #include "radeon_drm.h" 31 + #include <drm/radeon_drm.h> 32 32 #include "nid.h" 33 33 #include "atom.h" 34 34 #include "ni_reg.h"
+2 -3
drivers/gpu/drm/radeon/r100.c
··· 27 27 */ 28 28 #include <linux/seq_file.h> 29 29 #include <linux/slab.h> 30 - #include "drmP.h" 31 - #include "drm.h" 32 - #include "radeon_drm.h" 30 + #include <drm/drmP.h> 31 + #include <drm/radeon_drm.h> 33 32 #include "radeon_reg.h" 34 33 #include "radeon.h" 35 34 #include "radeon_asic.h"
+2 -3
drivers/gpu/drm/radeon/r200.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "radeon_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/radeon_drm.h> 31 30 #include "radeon_reg.h" 32 31 #include "radeon.h" 33 32 #include "radeon_asic.h"
+1 -1
drivers/gpu/drm/radeon/r300.c
··· 33 33 #include "radeon_reg.h" 34 34 #include "radeon.h" 35 35 #include "radeon_asic.h" 36 - #include "radeon_drm.h" 36 + #include <drm/radeon_drm.h> 37 37 #include "r100_track.h" 38 38 #include "r300d.h" 39 39 #include "rv350d.h"
+3 -4
drivers/gpu/drm/radeon/r300_cmdbuf.c
··· 31 31 * Nicolai Haehnle <prefect_@gmx.net> 32 32 */ 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "drm_buffer.h" 37 - #include "radeon_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/drm_buffer.h> 36 + #include <drm/radeon_drm.h> 38 37 #include "radeon_drv.h" 39 38 #include "r300_reg.h" 40 39
+1 -1
drivers/gpu/drm/radeon/r420.c
··· 27 27 */ 28 28 #include <linux/seq_file.h> 29 29 #include <linux/slab.h> 30 - #include "drmP.h" 30 + #include <drm/drmP.h> 31 31 #include "radeon_reg.h" 32 32 #include "radeon.h" 33 33 #include "radeon_asic.h"
+1 -1
drivers/gpu/drm/radeon/r520.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "radeon.h" 30 30 #include "radeon_asic.h" 31 31 #include "atom.h"
+2 -2
drivers/gpu/drm/radeon/r600.c
··· 30 30 #include <linux/firmware.h> 31 31 #include <linux/platform_device.h> 32 32 #include <linux/module.h> 33 - #include "drmP.h" 34 - #include "radeon_drm.h" 33 + #include <drm/drmP.h> 34 + #include <drm/radeon_drm.h> 35 35 #include "radeon.h" 36 36 #include "radeon_asic.h" 37 37 #include "radeon_mode.h"
+1 -1
drivers/gpu/drm/radeon/r600_audio.c
··· 23 23 * 24 24 * Authors: Christian König 25 25 */ 26 - #include "drmP.h" 26 + #include <drm/drmP.h> 27 27 #include "radeon.h" 28 28 #include "radeon_reg.h" 29 29 #include "radeon_asic.h"
+2 -3
drivers/gpu/drm/radeon/r600_blit.c
··· 23 23 * Authors: 24 24 * Alex Deucher <alexander.deucher@amd.com> 25 25 */ 26 - #include "drmP.h" 27 - #include "drm.h" 28 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/radeon_drm.h> 29 28 #include "radeon_drv.h" 30 29 31 30 #include "r600_blit_shaders.h"
+2 -3
drivers/gpu/drm/radeon/r600_blit_kms.c
··· 23 23 * 24 24 */ 25 25 26 - #include "drmP.h" 27 - #include "drm.h" 28 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/radeon_drm.h> 29 28 #include "radeon.h" 30 29 31 30 #include "r600d.h"
+2 -3
drivers/gpu/drm/radeon/r600_cp.c
··· 28 28 29 29 #include <linux/module.h> 30 30 31 - #include "drmP.h" 32 - #include "drm.h" 33 - #include "radeon_drm.h" 31 + #include <drm/drmP.h> 32 + #include <drm/radeon_drm.h> 34 33 #include "radeon_drv.h" 35 34 36 35 #define PFP_UCODE_SIZE 576
+1 -1
drivers/gpu/drm/radeon/r600_cs.c
··· 26 26 * Jerome Glisse 27 27 */ 28 28 #include <linux/kernel.h> 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 #include "radeon.h" 31 31 #include "r600d.h" 32 32 #include "r600_reg_safe.h"
+2 -2
drivers/gpu/drm/radeon/r600_hdmi.c
··· 23 23 * 24 24 * Authors: Christian König 25 25 */ 26 - #include "drmP.h" 27 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/radeon_drm.h> 28 28 #include "radeon.h" 29 29 #include "radeon_asic.h" 30 30 #include "r600d.h"
+2 -4
drivers/gpu/drm/radeon/radeon_acpi.c
··· 4 4 #include <acpi/acpi_drivers.h> 5 5 #include <acpi/acpi_bus.h> 6 6 7 - #include "drmP.h" 8 - #include "drm.h" 9 - #include "drm_sarea.h" 10 - #include "drm_crtc_helper.h" 7 + #include <drm/drmP.h> 8 + #include <drm/drm_crtc_helper.h> 11 9 #include "radeon.h" 12 10 13 11 #include <linux/vga_switcheroo.h>
+2 -3
drivers/gpu/drm/radeon/radeon_agp.c
··· 24 24 * Dave Airlie 25 25 * Jerome Glisse <glisse@freedesktop.org> 26 26 */ 27 - #include "drmP.h" 28 - #include "drm.h" 27 + #include <drm/drmP.h> 29 28 #include "radeon.h" 30 - #include "radeon_drm.h" 29 + #include <drm/radeon_drm.h> 31 30 32 31 #if __OS_HAS_AGP 33 32
+2 -2
drivers/gpu/drm/radeon/radeon_atombios.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/radeon_drm.h> 28 28 #include "radeon.h" 29 29 30 30 #include "atom.h"
+1 -1
drivers/gpu/drm/radeon/radeon_bios.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "radeon_reg.h" 30 30 #include "radeon.h" 31 31 #include "atom.h"
+2 -2
drivers/gpu/drm/radeon/radeon_clocks.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 29 - #include "radeon_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/radeon_drm.h> 30 30 #include "radeon_reg.h" 31 31 #include "radeon.h" 32 32 #include "atom.h"
+2 -2
drivers/gpu/drm/radeon/radeon_combios.c
··· 24 24 * Authors: Dave Airlie 25 25 * Alex Deucher 26 26 */ 27 - #include "drmP.h" 28 - #include "radeon_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon.h" 30 30 #include "atom.h" 31 31
+5 -5
drivers/gpu/drm/radeon/radeon_connectors.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "drm_edid.h" 28 - #include "drm_crtc_helper.h" 29 - #include "drm_fb_helper.h" 30 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/drm_edid.h> 28 + #include <drm/drm_crtc_helper.h> 29 + #include <drm/drm_fb_helper.h> 30 + #include <drm/radeon_drm.h> 31 31 #include "radeon.h" 32 32 #include "atom.h" 33 33
+2 -4
drivers/gpu/drm/radeon/radeon_cp.c
··· 31 31 32 32 #include <linux/module.h> 33 33 34 - #include "drmP.h" 35 - #include "drm.h" 36 - #include "drm_sarea.h" 37 - #include "radeon_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/radeon_drm.h> 38 36 #include "radeon_drv.h" 39 37 #include "r300_reg.h" 40 38
+2 -2
drivers/gpu/drm/radeon/radeon_cs.c
··· 24 24 * Authors: 25 25 * Jerome Glisse <glisse@freedesktop.org> 26 26 */ 27 - #include "drmP.h" 28 - #include "radeon_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon_reg.h" 30 30 #include "radeon.h" 31 31
+2 -2
drivers/gpu/drm/radeon/radeon_cursor.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/radeon_drm.h> 28 28 #include "radeon.h" 29 29 30 30 #define CURSOR_WIDTH 64
+4 -4
drivers/gpu/drm/radeon/radeon_display.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/radeon_drm.h> 28 28 #include "radeon.h" 29 29 30 30 #include "atom.h" 31 31 #include <asm/div64.h> 32 32 33 - #include "drm_crtc_helper.h" 34 - #include "drm_edid.h" 33 + #include <drm/drm_crtc_helper.h> 34 + #include <drm/drm_edid.h> 35 35 36 36 static void avivo_crtc_load_lut(struct drm_crtc *crtc) 37 37 {
+3 -4
drivers/gpu/drm/radeon/radeon_drv.c
··· 29 29 * OTHER DEALINGS IN THE SOFTWARE. 30 30 */ 31 31 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "radeon_drm.h" 32 + #include <drm/drmP.h> 33 + #include <drm/radeon_drm.h> 35 34 #include "radeon_drv.h" 36 35 37 - #include "drm_pciids.h" 36 + #include <drm/drm_pciids.h> 38 37 #include <linux/console.h> 39 38 #include <linux/module.h> 40 39
+3 -3
drivers/gpu/drm/radeon/radeon_encoders.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "drm_crtc_helper.h" 28 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/drm_crtc_helper.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon.h" 30 30 #include "atom.h" 31 31
+5 -6
drivers/gpu/drm/radeon/radeon_fb.c
··· 27 27 #include <linux/slab.h> 28 28 #include <linux/fb.h> 29 29 30 - #include "drmP.h" 31 - #include "drm.h" 32 - #include "drm_crtc.h" 33 - #include "drm_crtc_helper.h" 34 - #include "radeon_drm.h" 30 + #include <drm/drmP.h> 31 + #include <drm/drm_crtc.h> 32 + #include <drm/drm_crtc_helper.h> 33 + #include <drm/radeon_drm.h> 35 34 #include "radeon.h" 36 35 37 - #include "drm_fb_helper.h" 36 + #include <drm/drm_fb_helper.h> 38 37 39 38 #include <linux/vga_switcheroo.h> 40 39
+1 -2
drivers/gpu/drm/radeon/radeon_fence.c
··· 34 34 #include <linux/list.h> 35 35 #include <linux/kref.h> 36 36 #include <linux/slab.h> 37 - #include "drmP.h" 38 - #include "drm.h" 37 + #include <drm/drmP.h> 39 38 #include "radeon_reg.h" 40 39 #include "radeon.h" 41 40 #include "radeon_trace.h"
+2 -2
drivers/gpu/drm/radeon/radeon_gart.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 29 - #include "radeon_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/radeon_drm.h> 30 30 #include "radeon.h" 31 31 #include "radeon_reg.h" 32 32
+2 -3
drivers/gpu/drm/radeon/radeon_gem.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 29 - #include "drm.h" 30 - #include "radeon_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/radeon_drm.h> 31 30 #include "radeon.h" 32 31 33 32 int radeon_gem_object_init(struct drm_gem_object *obj)
+3 -3
drivers/gpu/drm/radeon/radeon_i2c.c
··· 25 25 */ 26 26 #include <linux/export.h> 27 27 28 - #include "drmP.h" 29 - #include "drm_edid.h" 30 - #include "radeon_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/drm_edid.h> 30 + #include <drm/radeon_drm.h> 31 31 #include "radeon.h" 32 32 #include "atom.h" 33 33
+2 -3
drivers/gpu/drm/radeon/radeon_ioc32.c
··· 29 29 */ 30 30 #include <linux/compat.h> 31 31 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "radeon_drm.h" 32 + #include <drm/drmP.h> 33 + #include <drm/radeon_drm.h> 35 34 #include "radeon_drv.h" 36 35 37 36 typedef struct drm_radeon_init32 {
+2 -3
drivers/gpu/drm/radeon/radeon_irq.c
··· 30 30 * Michel D�zer <michel@daenzer.net> 31 31 */ 32 32 33 - #include "drmP.h" 34 - #include "drm.h" 35 - #include "radeon_drm.h" 33 + #include <drm/drmP.h> 34 + #include <drm/radeon_drm.h> 36 35 #include "radeon_drv.h" 37 36 38 37 void radeon_irq_set_state(struct drm_device *dev, u32 mask, int state)
+3 -3
drivers/gpu/drm/radeon/radeon_irq_kms.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 29 - #include "drm_crtc_helper.h" 30 - #include "radeon_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/drm_crtc_helper.h> 30 + #include <drm/radeon_drm.h> 31 31 #include "radeon_reg.h" 32 32 #include "radeon.h" 33 33 #include "atom.h"
+2 -3
drivers/gpu/drm/radeon/radeon_kms.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 29 - #include "drm_sarea.h" 28 + #include <drm/drmP.h> 30 29 #include "radeon.h" 31 - #include "radeon_drm.h" 30 + #include <drm/radeon_drm.h> 32 31 #include "radeon_asic.h" 33 32 34 33 #include <linux/vga_switcheroo.h>
+3 -3
drivers/gpu/drm/radeon/radeon_legacy_encoders.c
··· 23 23 * Authors: Dave Airlie 24 24 * Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "drm_crtc_helper.h" 28 - #include "radeon_drm.h" 26 + #include <drm/drmP.h> 27 + #include <drm/drm_crtc_helper.h> 28 + #include <drm/radeon_drm.h> 29 29 #include "radeon.h" 30 30 #include "atom.h" 31 31 #include <linux/backlight.h>
+2 -2
drivers/gpu/drm/radeon/radeon_legacy_tv.c
··· 1 - #include "drmP.h" 2 - #include "drm_crtc_helper.h" 1 + #include <drm/drmP.h> 2 + #include <drm/drm_crtc_helper.h> 3 3 #include "radeon.h" 4 4 5 5 /*
+2 -3
drivers/gpu/drm/radeon/radeon_mem.c
··· 29 29 * Keith Whitwell <keith@tungstengraphics.com> 30 30 */ 31 31 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "radeon_drm.h" 32 + #include <drm/drmP.h> 33 + #include <drm/radeon_drm.h> 35 34 #include "radeon_drv.h" 36 35 37 36 /* Very simple allocator for GART memory, working on a static range
+5 -6
drivers/gpu/drm/radeon/radeon_mode.h
··· 30 30 #ifndef RADEON_MODE_H 31 31 #define RADEON_MODE_H 32 32 33 - #include <drm_crtc.h> 34 - #include <drm_mode.h> 35 - #include <drm_edid.h> 36 - #include <drm_dp_helper.h> 37 - #include <drm_fixed.h> 38 - #include <drm_crtc_helper.h> 33 + #include <drm/drm_crtc.h> 34 + #include <drm/drm_edid.h> 35 + #include <drm/drm_dp_helper.h> 36 + #include <drm/drm_fixed.h> 37 + #include <drm/drm_crtc_helper.h> 39 38 #include <linux/i2c.h> 40 39 #include <linux/i2c-algo-bit.h> 41 40
+1 -1
drivers/gpu/drm/radeon/radeon_object.c
··· 32 32 #include <linux/list.h> 33 33 #include <linux/slab.h> 34 34 #include <drm/drmP.h> 35 - #include "radeon_drm.h" 35 + #include <drm/radeon_drm.h> 36 36 #include "radeon.h" 37 37 #include "radeon_trace.h" 38 38
+1 -1
drivers/gpu/drm/radeon/radeon_pm.c
··· 20 20 * Authors: Rafał Miłecki <zajec5@gmail.com> 21 21 * Alex Deucher <alexdeucher@gmail.com> 22 22 */ 23 - #include "drmP.h" 23 + #include <drm/drmP.h> 24 24 #include "radeon.h" 25 25 #include "avivod.h" 26 26 #include "atom.h"
+2 -3
drivers/gpu/drm/radeon/radeon_prime.c
··· 23 23 * 24 24 * Authors: Alex Deucher 25 25 */ 26 - #include "drmP.h" 27 - #include "drm.h" 26 + #include <drm/drmP.h> 28 27 29 28 #include "radeon.h" 30 - #include "radeon_drm.h" 29 + #include <drm/radeon_drm.h> 31 30 32 31 #include <linux/dma-buf.h> 33 32
+2 -2
drivers/gpu/drm/radeon/radeon_ring.c
··· 28 28 */ 29 29 #include <linux/seq_file.h> 30 30 #include <linux/slab.h> 31 - #include "drmP.h" 32 - #include "radeon_drm.h" 31 + #include <drm/drmP.h> 32 + #include <drm/radeon_drm.h> 33 33 #include "radeon_reg.h" 34 34 #include "radeon.h" 35 35 #include "atom.h"
+1 -2
drivers/gpu/drm/radeon/radeon_sa.c
··· 41 41 * If we are asked to block we wait on all the oldest fence of all 42 42 * rings. We just wait for any of those fence to complete. 43 43 */ 44 - #include "drmP.h" 45 - #include "drm.h" 44 + #include <drm/drmP.h> 46 45 #include "radeon.h" 47 46 48 47 static void radeon_sa_bo_remove_locked(struct radeon_sa_bo *sa_bo);
+1 -2
drivers/gpu/drm/radeon/radeon_semaphore.c
··· 27 27 * Authors: 28 28 * Christian König <deathsimple@vodafone.de> 29 29 */ 30 - #include "drmP.h" 31 - #include "drm.h" 30 + #include <drm/drmP.h> 32 31 #include "radeon.h" 33 32 34 33
+3 -5
drivers/gpu/drm/radeon/radeon_state.c
··· 27 27 * Kevin E. Martin <martin@valinux.com> 28 28 */ 29 29 30 - #include "drmP.h" 31 - #include "drm.h" 32 - #include "drm_buffer.h" 33 - #include "drm_sarea.h" 34 - #include "radeon_drm.h" 30 + #include <drm/drmP.h> 31 + #include <drm/drm_buffer.h> 32 + #include <drm/radeon_drm.h> 35 33 #include "radeon_drv.h" 36 34 37 35 /* ================================================================
+1 -1
drivers/gpu/drm/radeon/radeon_trace_points.c
··· 2 2 * Author : Dave Airlie <airlied@redhat.com> 3 3 */ 4 4 #include <drm/drmP.h> 5 - #include "radeon_drm.h" 5 + #include <drm/radeon_drm.h> 6 6 #include "radeon.h" 7 7 8 8 #define CREATE_TRACE_POINTS
+1 -1
drivers/gpu/drm/radeon/rs600.c
··· 35 35 * close to the one of the R600 family (R600 likely being an evolution 36 36 * of the RS600 GART block). 37 37 */ 38 - #include "drmP.h" 38 + #include <drm/drmP.h> 39 39 #include "radeon.h" 40 40 #include "radeon_asic.h" 41 41 #include "atom.h"
+1 -1
drivers/gpu/drm/radeon/rs690.c
··· 25 25 * Alex Deucher 26 26 * Jerome Glisse 27 27 */ 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "radeon.h" 30 30 #include "radeon_asic.h" 31 31 #include "atom.h"
+1 -1
drivers/gpu/drm/radeon/rv515.c
··· 27 27 */ 28 28 #include <linux/seq_file.h> 29 29 #include <linux/slab.h> 30 - #include "drmP.h" 30 + #include <drm/drmP.h> 31 31 #include "rv515d.h" 32 32 #include "radeon.h" 33 33 #include "radeon_asic.h"
+2 -2
drivers/gpu/drm/radeon/rv770.c
··· 28 28 #include <linux/firmware.h> 29 29 #include <linux/platform_device.h> 30 30 #include <linux/slab.h> 31 - #include "drmP.h" 31 + #include <drm/drmP.h> 32 32 #include "radeon.h" 33 33 #include "radeon_asic.h" 34 - #include "radeon_drm.h" 34 + #include <drm/radeon_drm.h> 35 35 #include "rv770d.h" 36 36 #include "atom.h" 37 37 #include "avivod.h"
+2 -2
drivers/gpu/drm/radeon/si.c
··· 25 25 #include <linux/platform_device.h> 26 26 #include <linux/slab.h> 27 27 #include <linux/module.h> 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "radeon.h" 30 30 #include "radeon_asic.h" 31 - #include "radeon_drm.h" 31 + #include <drm/radeon_drm.h> 32 32 #include "sid.h" 33 33 #include "atom.h" 34 34 #include "si_blit_shaders.h"
+2 -2
drivers/gpu/drm/savage/savage_bci.c
··· 22 22 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23 23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 24 */ 25 - #include "drmP.h" 26 - #include "savage_drm.h" 25 + #include <drm/drmP.h> 26 + #include <drm/savage_drm.h> 27 27 #include "savage_drv.h" 28 28 29 29 /* Need a long timeout for shadow status updates can take a while
+3 -3
drivers/gpu/drm/savage/savage_drv.c
··· 25 25 26 26 #include <linux/module.h> 27 27 28 - #include "drmP.h" 29 - #include "savage_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/savage_drm.h> 30 30 #include "savage_drv.h" 31 31 32 - #include "drm_pciids.h" 32 + #include <drm/drm_pciids.h> 33 33 34 34 static struct pci_device_id pciidlist[] = { 35 35 savage_PCI_IDS
+2 -2
drivers/gpu/drm/savage/savage_state.c
··· 22 22 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23 23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 24 */ 25 - #include "drmP.h" 26 - #include "savage_drm.h" 25 + #include <drm/drmP.h> 26 + #include <drm/savage_drm.h> 27 27 #include "savage_drv.h" 28 28 29 29 void savage_emit_clip_rect_s3d(drm_savage_private_t * dev_priv,
+3 -3
drivers/gpu/drm/sis/sis_drv.c
··· 27 27 28 28 #include <linux/module.h> 29 29 30 - #include "drmP.h" 31 - #include "sis_drm.h" 30 + #include <drm/drmP.h> 31 + #include <drm/sis_drm.h> 32 32 #include "sis_drv.h" 33 33 34 - #include "drm_pciids.h" 34 + #include <drm/drm_pciids.h> 35 35 36 36 static struct pci_device_id pciidlist[] = { 37 37 sisdrv_PCI_IDS
+1 -1
drivers/gpu/drm/sis/sis_drv.h
··· 44 44 SIS_CHIP_315 = 1, 45 45 }; 46 46 47 - #include "drm_mm.h" 47 + #include <drm/drm_mm.h> 48 48 49 49 50 50 #define SIS_BASE (dev_priv->mmio)
+2 -2
drivers/gpu/drm/sis/sis_mm.c
··· 31 31 * Thomas Hellström <thomas-at-tungstengraphics-dot-com> 32 32 */ 33 33 34 - #include "drmP.h" 35 - #include "sis_drm.h" 34 + #include <drm/drmP.h> 35 + #include <drm/sis_drm.h> 36 36 #include "sis_drv.h" 37 37 38 38 #include <video/sisfb.h>
+2 -2
drivers/gpu/drm/tdfx/tdfx_drv.c
··· 32 32 33 33 #include <linux/module.h> 34 34 35 - #include "drmP.h" 35 + #include <drm/drmP.h> 36 36 #include "tdfx_drv.h" 37 37 38 - #include "drm_pciids.h" 38 + #include <drm/drm_pciids.h> 39 39 40 40 static struct pci_device_id pciidlist[] = { 41 41 tdfx_PCI_IDS
+4 -4
drivers/gpu/drm/ttm/ttm_agp_backend.c
··· 31 31 32 32 #define pr_fmt(fmt) "[TTM] " fmt 33 33 34 - #include "ttm/ttm_module.h" 35 - #include "ttm/ttm_bo_driver.h" 36 - #include "ttm/ttm_page_alloc.h" 34 + #include <drm/ttm/ttm_module.h> 35 + #include <drm/ttm/ttm_bo_driver.h> 36 + #include <drm/ttm/ttm_page_alloc.h> 37 37 #ifdef TTM_HAS_AGP 38 - #include "ttm/ttm_placement.h" 38 + #include <drm/ttm/ttm_placement.h> 39 39 #include <linux/agp_backend.h> 40 40 #include <linux/module.h> 41 41 #include <linux/slab.h>
+3 -3
drivers/gpu/drm/ttm/ttm_bo.c
··· 30 30 31 31 #define pr_fmt(fmt) "[TTM] " fmt 32 32 33 - #include "ttm/ttm_module.h" 34 - #include "ttm/ttm_bo_driver.h" 35 - #include "ttm/ttm_placement.h" 33 + #include <drm/ttm/ttm_module.h> 34 + #include <drm/ttm/ttm_bo_driver.h> 35 + #include <drm/ttm/ttm_placement.h> 36 36 #include <linux/jiffies.h> 37 37 #include <linux/slab.h> 38 38 #include <linux/sched.h>
+4 -4
drivers/gpu/drm/ttm/ttm_bo_manager.c
··· 28 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 29 29 */ 30 30 31 - #include "ttm/ttm_module.h" 32 - #include "ttm/ttm_bo_driver.h" 33 - #include "ttm/ttm_placement.h" 34 - #include "drm_mm.h" 31 + #include <drm/ttm/ttm_module.h> 32 + #include <drm/ttm/ttm_bo_driver.h> 33 + #include <drm/ttm/ttm_placement.h> 34 + #include <drm/drm_mm.h> 35 35 #include <linux/slab.h> 36 36 #include <linux/spinlock.h> 37 37 #include <linux/module.h>
+2 -2
drivers/gpu/drm/ttm/ttm_bo_util.c
··· 28 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 29 29 */ 30 30 31 - #include "ttm/ttm_bo_driver.h" 32 - #include "ttm/ttm_placement.h" 31 + #include <drm/ttm/ttm_bo_driver.h> 32 + #include <drm/ttm/ttm_placement.h> 33 33 #include <linux/io.h> 34 34 #include <linux/highmem.h> 35 35 #include <linux/wait.h>
+3 -3
drivers/gpu/drm/ttm/ttm_execbuf_util.c
··· 25 25 * 26 26 **************************************************************************/ 27 27 28 - #include "ttm/ttm_execbuf_util.h" 29 - #include "ttm/ttm_bo_driver.h" 30 - #include "ttm/ttm_placement.h" 28 + #include <drm/ttm/ttm_execbuf_util.h> 29 + #include <drm/ttm/ttm_bo_driver.h> 30 + #include <drm/ttm/ttm_placement.h> 31 31 #include <linux/wait.h> 32 32 #include <linux/sched.h> 33 33 #include <linux/module.h>
+2 -2
drivers/gpu/drm/ttm/ttm_lock.c
··· 28 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 29 29 */ 30 30 31 - #include "ttm/ttm_lock.h" 32 - #include "ttm/ttm_module.h" 31 + #include <drm/ttm/ttm_lock.h> 32 + #include <drm/ttm/ttm_module.h> 33 33 #include <linux/atomic.h> 34 34 #include <linux/errno.h> 35 35 #include <linux/wait.h>
+3 -3
drivers/gpu/drm/ttm/ttm_memory.c
··· 27 27 28 28 #define pr_fmt(fmt) "[TTM] " fmt 29 29 30 - #include "ttm/ttm_memory.h" 31 - #include "ttm/ttm_module.h" 32 - #include "ttm/ttm_page_alloc.h" 30 + #include <drm/ttm/ttm_memory.h> 31 + #include <drm/ttm/ttm_module.h> 32 + #include <drm/ttm/ttm_page_alloc.h> 33 33 #include <linux/spinlock.h> 34 34 #include <linux/sched.h> 35 35 #include <linux/wait.h>
+2 -2
drivers/gpu/drm/ttm/ttm_module.c
··· 31 31 #include <linux/module.h> 32 32 #include <linux/device.h> 33 33 #include <linux/sched.h> 34 - #include "ttm/ttm_module.h" 35 - #include "drm_sysfs.h" 34 + #include <drm/ttm/ttm_module.h> 35 + #include <drm/drm_sysfs.h> 36 36 37 37 static DECLARE_WAIT_QUEUE_HEAD(exit_q); 38 38 atomic_t device_released;
+2 -2
drivers/gpu/drm/ttm/ttm_object.c
··· 51 51 52 52 #define pr_fmt(fmt) "[TTM] " fmt 53 53 54 - #include "ttm/ttm_object.h" 55 - #include "ttm/ttm_module.h" 54 + #include <drm/ttm/ttm_object.h> 55 + #include <drm/ttm/ttm_module.h> 56 56 #include <linux/list.h> 57 57 #include <linux/spinlock.h> 58 58 #include <linux/slab.h>
+2 -2
drivers/gpu/drm/ttm/ttm_page_alloc.c
··· 45 45 46 46 #include <linux/atomic.h> 47 47 48 - #include "ttm/ttm_bo_driver.h" 49 - #include "ttm/ttm_page_alloc.h" 48 + #include <drm/ttm/ttm_bo_driver.h> 49 + #include <drm/ttm/ttm_page_alloc.h> 50 50 51 51 #ifdef TTM_HAS_AGP 52 52 #include <asm/agp.h>
+2 -2
drivers/gpu/drm/ttm/ttm_page_alloc_dma.c
··· 47 47 #include <linux/atomic.h> 48 48 #include <linux/device.h> 49 49 #include <linux/kthread.h> 50 - #include "ttm/ttm_bo_driver.h" 51 - #include "ttm/ttm_page_alloc.h" 50 + #include <drm/ttm/ttm_bo_driver.h> 51 + #include <drm/ttm/ttm_page_alloc.h> 52 52 #ifdef TTM_HAS_AGP 53 53 #include <asm/agp.h> 54 54 #endif
+6 -6
drivers/gpu/drm/ttm/ttm_tt.c
··· 38 38 #include <linux/swap.h> 39 39 #include <linux/slab.h> 40 40 #include <linux/export.h> 41 - #include "drm_cache.h" 42 - #include "drm_mem_util.h" 43 - #include "ttm/ttm_module.h" 44 - #include "ttm/ttm_bo_driver.h" 45 - #include "ttm/ttm_placement.h" 46 - #include "ttm/ttm_page_alloc.h" 41 + #include <drm/drm_cache.h> 42 + #include <drm/drm_mem_util.h> 43 + #include <drm/ttm/ttm_module.h> 44 + #include <drm/ttm/ttm_bo_driver.h> 45 + #include <drm/ttm/ttm_placement.h> 46 + #include <drm/ttm/ttm_page_alloc.h> 47 47 48 48 /** 49 49 * Allocates storage for pointers to the pages that back the ttm.
+4 -4
drivers/gpu/drm/udl/udl_connector.c
··· 10 10 * more details. 11 11 */ 12 12 13 - #include "drmP.h" 14 - #include "drm_crtc.h" 15 - #include "drm_edid.h" 16 - #include "drm_crtc_helper.h" 13 + #include <drm/drmP.h> 14 + #include <drm/drm_crtc.h> 15 + #include <drm/drm_edid.h> 16 + #include <drm/drm_crtc_helper.h> 17 17 #include "udl_drv.h" 18 18 19 19 /* dummy connector to just get EDID,
+2 -2
drivers/gpu/drm/udl/udl_drv.c
··· 7 7 */ 8 8 9 9 #include <linux/module.h> 10 - #include "drm_usb.h" 11 - #include "drm_crtc_helper.h" 10 + #include <drm/drm_usb.h> 11 + #include <drm/drm_crtc_helper.h> 12 12 #include "udl_drv.h" 13 13 14 14 static struct drm_driver driver;
+3 -3
drivers/gpu/drm/udl/udl_encoder.c
··· 10 10 * more details. 11 11 */ 12 12 13 - #include "drmP.h" 14 - #include "drm_crtc.h" 15 - #include "drm_crtc_helper.h" 13 + #include <drm/drmP.h> 14 + #include <drm/drm_crtc.h> 15 + #include <drm/drm_crtc_helper.h> 16 16 #include "udl_drv.h" 17 17 18 18 /* dummy encoder */
+4 -5
drivers/gpu/drm/udl/udl_fb.c
··· 14 14 #include <linux/slab.h> 15 15 #include <linux/fb.h> 16 16 17 - #include "drmP.h" 18 - #include "drm.h" 19 - #include "drm_crtc.h" 20 - #include "drm_crtc_helper.h" 17 + #include <drm/drmP.h> 18 + #include <drm/drm_crtc.h> 19 + #include <drm/drm_crtc_helper.h> 21 20 #include "udl_drv.h" 22 21 23 - #include "drm_fb_helper.h" 22 + #include <drm/drm_fb_helper.h> 24 23 25 24 #define DL_DEFIO_WRITE_DELAY 5 /* fb_deferred_io.delay in jiffies */ 26 25
+1 -1
drivers/gpu/drm/udl/udl_gem.c
··· 6 6 * more details. 7 7 */ 8 8 9 - #include "drmP.h" 9 + #include <drm/drmP.h> 10 10 #include "udl_drv.h" 11 11 #include <linux/shmem_fs.h> 12 12 #include <linux/dma-buf.h>
+1 -1
drivers/gpu/drm/udl/udl_main.c
··· 10 10 * License v2. See the file COPYING in the main directory of this archive for 11 11 * more details. 12 12 */ 13 - #include "drmP.h" 13 + #include <drm/drmP.h> 14 14 #include "udl_drv.h" 15 15 16 16 /* -BULK_SIZE as per usb-skeleton. Can we get full page and avoid overhead? */
+3 -3
drivers/gpu/drm/udl/udl_modeset.c
··· 11 11 * more details. 12 12 */ 13 13 14 - #include "drmP.h" 15 - #include "drm_crtc.h" 16 - #include "drm_crtc_helper.h" 14 + #include <drm/drmP.h> 15 + #include <drm/drm_crtc.h> 16 + #include <drm/drm_crtc_helper.h> 17 17 #include "udl_drv.h" 18 18 19 19 /*
+1 -1
drivers/gpu/drm/udl/udl_transfer.c
··· 15 15 #include <linux/fb.h> 16 16 #include <linux/prefetch.h> 17 17 18 - #include "drmP.h" 18 + #include <drm/drmP.h> 19 19 #include "udl_drv.h" 20 20 21 21 #define MAX_CMD_PIXELS 255
+2 -3
drivers/gpu/drm/via/via_dma.c
··· 34 34 * Thomas Hellstrom. 35 35 */ 36 36 37 - #include "drmP.h" 38 - #include "drm.h" 39 - #include "via_drm.h" 37 + #include <drm/drmP.h> 38 + #include <drm/via_drm.h> 40 39 #include "via_drv.h" 41 40 #include "via_3d_reg.h" 42 41
+2 -2
drivers/gpu/drm/via/via_dmablit.c
··· 34 34 * the same DMA mappings? 35 35 */ 36 36 37 - #include "drmP.h" 38 - #include "via_drm.h" 37 + #include <drm/drmP.h> 38 + #include <drm/via_drm.h> 39 39 #include "via_drv.h" 40 40 #include "via_dmablit.h" 41 41
+3 -3
drivers/gpu/drm/via/via_drv.c
··· 24 24 25 25 #include <linux/module.h> 26 26 27 - #include "drmP.h" 28 - #include "via_drm.h" 27 + #include <drm/drmP.h> 28 + #include <drm/via_drm.h> 29 29 #include "via_drv.h" 30 30 31 - #include "drm_pciids.h" 31 + #include <drm/drm_pciids.h> 32 32 33 33 static int via_driver_open(struct drm_device *dev, struct drm_file *file) 34 34 {
+1 -1
drivers/gpu/drm/via/via_drv.h
··· 24 24 #ifndef _VIA_DRV_H_ 25 25 #define _VIA_DRV_H_ 26 26 27 - #include "drm_mm.h" 27 + #include <drm/drm_mm.h> 28 28 #define DRIVER_AUTHOR "Various" 29 29 30 30 #define DRIVER_NAME "via"
+2 -3
drivers/gpu/drm/via/via_irq.c
··· 35 35 * The refresh rate is also calculated for video playback sync purposes. 36 36 */ 37 37 38 - #include "drmP.h" 39 - #include "drm.h" 40 - #include "via_drm.h" 38 + #include <drm/drmP.h> 39 + #include <drm/via_drm.h> 41 40 #include "via_drv.h" 42 41 43 42 #define VIA_REG_INTERRUPT 0x200
+2 -2
drivers/gpu/drm/via/via_map.c
··· 21 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 22 * DEALINGS IN THE SOFTWARE. 23 23 */ 24 - #include "drmP.h" 25 - #include "via_drm.h" 24 + #include <drm/drmP.h> 25 + #include <drm/via_drm.h> 26 26 #include "via_drv.h" 27 27 28 28 static int via_do_init_map(struct drm_device *dev, drm_via_init_t *init)
+2 -2
drivers/gpu/drm/via/via_mm.c
··· 25 25 * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com> 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "via_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/via_drm.h> 30 30 #include "via_drv.h" 31 31 32 32 #define VIA_MM_ALIGN_SHIFT 4
+2 -3
drivers/gpu/drm/via/via_verifier.c
··· 29 29 */ 30 30 31 31 #include "via_3d_reg.h" 32 - #include "drmP.h" 33 - #include "drm.h" 34 - #include "via_drm.h" 32 + #include <drm/drmP.h> 33 + #include <drm/via_drm.h> 35 34 #include "via_verifier.h" 36 35 #include "via_drv.h" 37 36
+2 -2
drivers/gpu/drm/via/via_video.c
··· 25 25 * Video and XvMC related functions. 26 26 */ 27 27 28 - #include "drmP.h" 29 - #include "via_drm.h" 28 + #include <drm/drmP.h> 29 + #include <drm/via_drm.h> 30 30 #include "via_drv.h" 31 31 32 32 void via_init_futex(drm_via_private_t *dev_priv)
+3 -3
drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c
··· 26 26 **************************************************************************/ 27 27 28 28 #include "vmwgfx_drv.h" 29 - #include "ttm/ttm_bo_driver.h" 30 - #include "ttm/ttm_placement.h" 31 - #include "ttm/ttm_page_alloc.h" 29 + #include <drm/ttm/ttm_bo_driver.h> 30 + #include <drm/ttm/ttm_placement.h> 31 + #include <drm/ttm/ttm_page_alloc.h> 32 32 33 33 static uint32_t vram_placement_flags = TTM_PL_FLAG_VRAM | 34 34 TTM_PL_FLAG_CACHED;
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_dmabuf.c
··· 25 25 * 26 26 **************************************************************************/ 27 27 28 - #include "ttm/ttm_placement.h" 28 + #include <drm/ttm/ttm_placement.h> 29 29 30 - #include "drmP.h" 30 + #include <drm/drmP.h> 31 31 #include "vmwgfx_drv.h" 32 32 33 33
+5 -5
drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
··· 26 26 **************************************************************************/ 27 27 #include <linux/module.h> 28 28 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 #include "vmwgfx_drv.h" 31 - #include "ttm/ttm_placement.h" 32 - #include "ttm/ttm_bo_driver.h" 33 - #include "ttm/ttm_object.h" 34 - #include "ttm/ttm_module.h" 31 + #include <drm/ttm/ttm_placement.h> 32 + #include <drm/ttm/ttm_bo_driver.h> 33 + #include <drm/ttm/ttm_object.h> 34 + #include <drm/ttm/ttm_module.h> 35 35 36 36 #define VMWGFX_DRIVER_NAME "vmwgfx" 37 37 #define VMWGFX_DRIVER_DESC "Linux drm driver for VMware graphics devices"
+9 -9
drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
··· 29 29 #define _VMWGFX_DRV_H_ 30 30 31 31 #include "vmwgfx_reg.h" 32 - #include "drmP.h" 33 - #include "vmwgfx_drm.h" 34 - #include "drm_hashtab.h" 35 - #include "linux/suspend.h" 36 - #include "ttm/ttm_bo_driver.h" 37 - #include "ttm/ttm_object.h" 38 - #include "ttm/ttm_lock.h" 39 - #include "ttm/ttm_execbuf_util.h" 40 - #include "ttm/ttm_module.h" 32 + #include <drm/drmP.h> 33 + #include <drm/vmwgfx_drm.h> 34 + #include <drm/drm_hashtab.h> 35 + #include <linux/suspend.h> 36 + #include <drm/ttm/ttm_bo_driver.h> 37 + #include <drm/ttm/ttm_object.h> 38 + #include <drm/ttm/ttm_lock.h> 39 + #include <drm/ttm/ttm_execbuf_util.h> 40 + #include <drm/ttm/ttm_module.h> 41 41 #include "vmwgfx_fence.h" 42 42 43 43 #define VMWGFX_DRIVER_DATE "20120209"
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
··· 27 27 28 28 #include "vmwgfx_drv.h" 29 29 #include "vmwgfx_reg.h" 30 - #include "ttm/ttm_bo_api.h" 31 - #include "ttm/ttm_placement.h" 30 + #include <drm/ttm/ttm_bo_api.h> 31 + #include <drm/ttm/ttm_placement.h> 32 32 33 33 static int vmw_cmd_invalid(struct vmw_private *dev_priv, 34 34 struct vmw_sw_context *sw_context,
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
··· 28 28 29 29 #include <linux/export.h> 30 30 31 - #include "drmP.h" 31 + #include <drm/drmP.h> 32 32 #include "vmwgfx_drv.h" 33 33 34 - #include "ttm/ttm_placement.h" 34 + #include <drm/ttm/ttm_placement.h> 35 35 36 36 #define VMW_DIRTY_DELAY (HZ / 30) 37 37
+1 -1
drivers/gpu/drm/vmwgfx/vmwgfx_fence.c
··· 25 25 * 26 26 **************************************************************************/ 27 27 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "vmwgfx_drv.h" 30 30 31 31 #define VMW_FENCE_WRAP (1 << 31)
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c
··· 26 26 **************************************************************************/ 27 27 28 28 #include "vmwgfx_drv.h" 29 - #include "drmP.h" 30 - #include "ttm/ttm_placement.h" 29 + #include <drm/drmP.h> 30 + #include <drm/ttm/ttm_placement.h> 31 31 32 32 bool vmw_fifo_have_3d(struct vmw_private *dev_priv) 33 33 {
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_gmr.c
··· 26 26 **************************************************************************/ 27 27 28 28 #include "vmwgfx_drv.h" 29 - #include "drmP.h" 30 - #include "ttm/ttm_bo_driver.h" 29 + #include <drm/drmP.h> 30 + #include <drm/ttm/ttm_bo_driver.h> 31 31 32 32 #define VMW_PPN_SIZE sizeof(unsigned long) 33 33
+3 -3
drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.c
··· 29 29 */ 30 30 31 31 #include "vmwgfx_drv.h" 32 - #include "ttm/ttm_module.h" 33 - #include "ttm/ttm_bo_driver.h" 34 - #include "ttm/ttm_placement.h" 32 + #include <drm/ttm/ttm_module.h> 33 + #include <drm/ttm/ttm_bo_driver.h> 34 + #include <drm/ttm/ttm_placement.h> 35 35 #include <linux/idr.h> 36 36 #include <linux/spinlock.h> 37 37 #include <linux/kernel.h>
+1 -1
drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c
··· 26 26 **************************************************************************/ 27 27 28 28 #include "vmwgfx_drv.h" 29 - #include "vmwgfx_drm.h" 29 + #include <drm/vmwgfx_drm.h> 30 30 #include "vmwgfx_kms.h" 31 31 32 32 int vmw_getparam_ioctl(struct drm_device *dev, void *data,
+1 -1
drivers/gpu/drm/vmwgfx/vmwgfx_irq.c
··· 25 25 * 26 26 **************************************************************************/ 27 27 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "vmwgfx_drv.h" 30 30 31 31 #define VMW_FENCE_WRAP (1 << 24)
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_kms.h
··· 28 28 #ifndef VMWGFX_KMS_H_ 29 29 #define VMWGFX_KMS_H_ 30 30 31 - #include "drmP.h" 32 - #include "drm_crtc_helper.h" 31 + #include <drm/drmP.h> 32 + #include <drm/drm_crtc_helper.h> 33 33 #include "vmwgfx_drv.h" 34 34 35 35 #define VMWGFX_NUM_DISPLAY_UNITS 8
+2 -2
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
··· 26 26 **************************************************************************/ 27 27 28 28 29 - #include "drmP.h" 29 + #include <drm/drmP.h> 30 30 #include "vmwgfx_drv.h" 31 31 32 - #include "ttm/ttm_placement.h" 32 + #include <drm/ttm/ttm_placement.h> 33 33 34 34 #include "svga_overlay.h" 35 35 #include "svga_escape.h"
+4 -4
drivers/gpu/drm/vmwgfx/vmwgfx_resource.c
··· 26 26 **************************************************************************/ 27 27 28 28 #include "vmwgfx_drv.h" 29 - #include "vmwgfx_drm.h" 30 - #include "ttm/ttm_object.h" 31 - #include "ttm/ttm_placement.h" 32 - #include "drmP.h" 29 + #include <drm/vmwgfx_drm.h> 30 + #include <drm/ttm/ttm_object.h> 31 + #include <drm/ttm/ttm_placement.h> 32 + #include <drm/drmP.h> 33 33 34 34 struct vmw_user_context { 35 35 struct ttm_base_object base;
+1 -1
drivers/gpu/drm/vmwgfx/vmwgfx_ttm_glue.c
··· 25 25 * 26 26 **************************************************************************/ 27 27 28 - #include "drmP.h" 28 + #include <drm/drmP.h> 29 29 #include "vmwgfx_drv.h" 30 30 31 31 int vmw_mmap(struct file *filp, struct vm_area_struct *vma)
+9 -9
include/acpi/acpi.h
··· 53 53 * 54 54 * Note: The order of these include files is important. 55 55 */ 56 - #include "platform/acenv.h" /* Environment-specific items */ 57 - #include "acnames.h" /* Common ACPI names and strings */ 58 - #include "actypes.h" /* ACPICA data types and structures */ 59 - #include "acexcep.h" /* ACPICA exceptions */ 60 - #include "actbl.h" /* ACPI table definitions */ 61 - #include "acoutput.h" /* Error output and Debug macros */ 62 - #include "acrestyp.h" /* Resource Descriptor structs */ 63 - #include "acpiosxf.h" /* OSL interfaces (ACPICA-to-OS) */ 64 - #include "acpixf.h" /* ACPI core subsystem external interfaces */ 56 + #include <acpi/platform/acenv.h> /* Environment-specific items */ 57 + #include <acpi/acnames.h> /* Common ACPI names and strings */ 58 + #include <acpi/actypes.h> /* ACPICA data types and structures */ 59 + #include <acpi/acexcep.h> /* ACPICA exceptions */ 60 + #include <acpi/actbl.h> /* ACPI table definitions */ 61 + #include <acpi/acoutput.h> /* Error output and Debug macros */ 62 + #include <acpi/acrestyp.h> /* Resource Descriptor structs */ 63 + #include <acpi/acpiosxf.h> /* OSL interfaces (ACPICA-to-OS) */ 64 + #include <acpi/acpixf.h> /* ACPI core subsystem external interfaces */ 65 65 66 66 #endif /* __ACPI_H__ */
+2 -2
include/acpi/acpiosxf.h
··· 47 47 #ifndef __ACPIOSXF_H__ 48 48 #define __ACPIOSXF_H__ 49 49 50 - #include "platform/acenv.h" 51 - #include "actypes.h" 50 + #include <acpi/platform/acenv.h> 51 + #include <acpi/actypes.h> 52 52 53 53 /* Types for acpi_os_execute */ 54 54
+3 -3
include/acpi/acpixf.h
··· 49 49 50 50 #define ACPI_CA_VERSION 0x20120711 51 51 52 - #include "acconfig.h" 53 - #include "actypes.h" 54 - #include "actbl.h" 52 + #include <acpi/acconfig.h> 53 + #include <acpi/actypes.h> 54 + #include <acpi/actbl.h> 55 55 56 56 extern u8 acpi_gbl_permanent_mmap; 57 57
+1 -1
include/acpi/platform/acenv.h
··· 138 138 /*! [Begin] no source code translation */ 139 139 140 140 #if defined(_LINUX) || defined(__linux__) 141 - #include "aclinux.h" 141 + #include <acpi/platform/aclinux.h> 142 142 143 143 #elif defined(_AED_EFI) 144 144 #include "acefi.h"
+1 -1
include/acpi/platform/aclinux.h
··· 106 106 107 107 /* Linux uses GCC */ 108 108 109 - #include "acgcc.h" 109 + #include <acpi/platform/acgcc.h> 110 110 111 111 112 112 #ifdef __KERNEL__
+1 -45
include/asm-generic/Kbuild.asm
··· 1 - ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm.h \ 2 - $(srctree)/include/asm-$(SRCARCH)/kvm.h),) 3 - header-y += kvm.h 4 - endif 5 - 6 - ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm_para.h \ 7 - $(srctree)/include/asm-$(SRCARCH)/kvm_para.h),) 8 - header-y += kvm_para.h 9 - endif 10 - 11 - ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h \ 12 - $(srctree)/include/asm-$(SRCARCH)/a.out.h),) 13 - header-y += a.out.h 14 - endif 15 - 16 - header-y += auxvec.h 17 - header-y += bitsperlong.h 18 - header-y += byteorder.h 19 - header-y += errno.h 20 - header-y += fcntl.h 21 - header-y += ioctl.h 22 - header-y += ioctls.h 23 - header-y += ipcbuf.h 24 - header-y += mman.h 25 - header-y += msgbuf.h 26 - header-y += param.h 27 - header-y += poll.h 28 - header-y += posix_types.h 29 - header-y += ptrace.h 30 - header-y += resource.h 31 - header-y += sembuf.h 32 - header-y += setup.h 33 - header-y += shmbuf.h 34 - header-y += sigcontext.h 35 - header-y += siginfo.h 36 - header-y += signal.h 37 - header-y += socket.h 38 - header-y += sockios.h 39 - header-y += stat.h 40 - header-y += statfs.h 41 - header-y += swab.h 42 - header-y += termbits.h 43 - header-y += termios.h 44 - header-y += types.h 45 - header-y += unistd.h 1 + include include/uapi/asm-generic/Kbuild.asm
+1 -1
include/drm/drm.h
··· 628 628 __s32 fd; 629 629 }; 630 630 631 - #include "drm_mode.h" 631 + #include <drm/drm_mode.h> 632 632 633 633 #define DRM_IOCTL_BASE 'd' 634 634 #define DRM_IO(nr) _IO(DRM_IOCTL_BASE,nr)
+9 -8
include/drm/drmP.h
··· 72 72 #include <linux/workqueue.h> 73 73 #include <linux/poll.h> 74 74 #include <asm/pgalloc.h> 75 - #include "drm.h" 75 + #include <drm/drm.h> 76 + #include <drm/drm_sarea.h> 76 77 77 78 #include <linux/idr.h> 78 79 ··· 85 84 struct drm_file; 86 85 struct drm_device; 87 86 88 - #include "drm_os_linux.h" 89 - #include "drm_hashtab.h" 90 - #include "drm_mm.h" 87 + #include <drm/drm_os_linux.h> 88 + #include <drm/drm_hashtab.h> 89 + #include <drm/drm_mm.h> 91 90 92 91 #define DRM_UT_CORE 0x01 93 92 #define DRM_UT_DRIVER 0x02 ··· 676 675 struct dma_buf_attachment *import_attach; 677 676 }; 678 677 679 - #include "drm_crtc.h" 678 + #include <drm/drm_crtc.h> 680 679 681 680 /* per-master structure */ 682 681 struct drm_master { ··· 1304 1303 extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait); 1305 1304 1306 1305 /* Memory management support (drm_memory.h) */ 1307 - #include "drm_memory.h" 1306 + #include <drm/drm_memory.h> 1308 1307 extern void drm_free_agp(DRM_AGP_MEM * handle, int pages); 1309 1308 extern int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start); 1310 1309 extern DRM_AGP_MEM *drm_agp_bind_pages(struct drm_device *dev, ··· 1613 1612 void drm_gem_vm_close(struct vm_area_struct *vma); 1614 1613 int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma); 1615 1614 1616 - #include "drm_global.h" 1615 + #include <drm/drm_global.h> 1617 1616 1618 1617 static inline void 1619 1618 drm_gem_object_reference(struct drm_gem_object *obj) ··· 1722 1721 { 1723 1722 } 1724 1723 1725 - #include "drm_mem_util.h" 1724 + #include <drm/drm_mem_util.h> 1726 1725 1727 1726 extern int drm_fill_in_dev(struct drm_device *dev, 1728 1727 const struct pci_device_id *ent,
+1 -1
include/drm/drm_buffer.h
··· 35 35 #ifndef _DRM_BUFFER_H_ 36 36 #define _DRM_BUFFER_H_ 37 37 38 - #include "drmP.h" 38 + #include <drm/drmP.h> 39 39 40 40 struct drm_buffer { 41 41 int iterator;
+1
include/drm/drm_crtc.h
··· 30 30 #include <linux/types.h> 31 31 #include <linux/idr.h> 32 32 #include <linux/fb.h> 33 + #include <drm/drm_mode.h> 33 34 34 35 #include <drm/drm_fourcc.h> 35 36
+2 -2
include/drm/drm_encoder_slave.h
··· 27 27 #ifndef __DRM_ENCODER_SLAVE_H__ 28 28 #define __DRM_ENCODER_SLAVE_H__ 29 29 30 - #include "drmP.h" 31 - #include "drm_crtc.h" 30 + #include <drm/drmP.h> 31 + #include <drm/drm_crtc.h> 32 32 33 33 /** 34 34 * struct drm_encoder_slave_funcs - Entry points exposed by a slave encoder driver
+1 -1
include/drm/drm_memory.h
··· 35 35 36 36 #include <linux/highmem.h> 37 37 #include <linux/vmalloc.h> 38 - #include "drmP.h" 38 + #include <drm/drmP.h> 39 39 40 40 /** 41 41 * Cut down version of drm_memory_debug.h, which used to be called
+1 -1
include/drm/drm_sarea.h
··· 32 32 #ifndef _DRM_SAREA_H_ 33 33 #define _DRM_SAREA_H_ 34 34 35 - #include "drm.h" 35 + #include <drm/drm.h> 36 36 37 37 /* SAREA area needs to be at least a page */ 38 38 #if defined(__alpha__)
+1 -1
include/drm/exynos_drm.h
··· 29 29 #ifndef _EXYNOS_DRM_H_ 30 30 #define _EXYNOS_DRM_H_ 31 31 32 - #include "drm.h" 32 + #include <drm/drm.h> 33 33 34 34 /** 35 35 * User-desired buffer creation information structure.
+1 -1
include/drm/i915_drm.h
··· 27 27 #ifndef _I915_DRM_H_ 28 28 #define _I915_DRM_H_ 29 29 30 - #include "drm.h" 30 + #include <drm/drm.h> 31 31 32 32 /* Please note that modifications to all structs defined here are 33 33 * subject to backwards-compatibility constraints.
+1 -1
include/drm/mga_drm.h
··· 35 35 #ifndef __MGA_DRM_H__ 36 36 #define __MGA_DRM_H__ 37 37 38 - #include "drm.h" 38 + #include <drm/drm.h> 39 39 40 40 /* WARNING: If you change any of these defines, make sure to change the 41 41 * defines in the Xserver file (mga_sarea.h)
+1 -1
include/drm/radeon_drm.h
··· 33 33 #ifndef __RADEON_DRM_H__ 34 34 #define __RADEON_DRM_H__ 35 35 36 - #include "drm.h" 36 + #include <drm/drm.h> 37 37 38 38 /* WARNING: If you change any of these defines, make sure to change the 39 39 * defines in the X server file (radeon_sarea.h)
+1 -1
include/drm/ttm/ttm_bo_api.h
··· 31 31 #ifndef _TTM_BO_API_H_ 32 32 #define _TTM_BO_API_H_ 33 33 34 - #include "drm_hashtab.h" 34 + #include <drm/drm_hashtab.h> 35 35 #include <linux/kref.h> 36 36 #include <linux/list.h> 37 37 #include <linux/wait.h>
+8 -8
include/drm/ttm/ttm_bo_driver.h
··· 30 30 #ifndef _TTM_BO_DRIVER_H_ 31 31 #define _TTM_BO_DRIVER_H_ 32 32 33 - #include "ttm/ttm_bo_api.h" 34 - #include "ttm/ttm_memory.h" 35 - #include "ttm/ttm_module.h" 36 - #include "drm_mm.h" 37 - #include "drm_global.h" 38 - #include "linux/workqueue.h" 39 - #include "linux/fs.h" 40 - #include "linux/spinlock.h" 33 + #include <ttm/ttm_bo_api.h> 34 + #include <ttm/ttm_memory.h> 35 + #include <ttm/ttm_module.h> 36 + #include <drm/drm_mm.h> 37 + #include <drm/drm_global.h> 38 + #include <linux/workqueue.h> 39 + #include <linux/fs.h> 40 + #include <linux/spinlock.h> 41 41 42 42 struct ttm_backend_func { 43 43 /**
+1 -1
include/drm/ttm/ttm_execbuf_util.h
··· 31 31 #ifndef _TTM_EXECBUF_UTIL_H_ 32 32 #define _TTM_EXECBUF_UTIL_H_ 33 33 34 - #include "ttm/ttm_bo_api.h" 34 + #include <ttm/ttm_bo_api.h> 35 35 #include <linux/list.h> 36 36 37 37 /**
+1 -1
include/drm/ttm/ttm_lock.h
··· 49 49 #ifndef _TTM_LOCK_H_ 50 50 #define _TTM_LOCK_H_ 51 51 52 - #include "ttm/ttm_object.h" 52 + #include <ttm/ttm_object.h> 53 53 #include <linux/wait.h> 54 54 #include <linux/atomic.h> 55 55
+1 -1
include/drm/ttm/ttm_object.h
··· 38 38 #define _TTM_OBJECT_H_ 39 39 40 40 #include <linux/list.h> 41 - #include "drm_hashtab.h" 41 + #include <drm/drm_hashtab.h> 42 42 #include <linux/kref.h> 43 43 #include <ttm/ttm_memory.h> 44 44
+2 -2
include/drm/ttm/ttm_page_alloc.h
··· 26 26 #ifndef TTM_PAGE_ALLOC 27 27 #define TTM_PAGE_ALLOC 28 28 29 - #include "ttm_bo_driver.h" 30 - #include "ttm_memory.h" 29 + #include <drm/ttm/ttm_bo_driver.h> 30 + #include <drm/ttm/ttm_memory.h> 31 31 32 32 /** 33 33 * Initialize pool allocator.
+1 -1
include/drm/via_drm.h
··· 24 24 #ifndef _VIA_DRM_H_ 25 25 #define _VIA_DRM_H_ 26 26 27 - #include "drm.h" 27 + #include <drm/drm.h> 28 28 29 29 /* WARNING: These defines must be the same as what the Xserver uses. 30 30 * if you change them, you must change the defines in the Xserver.
-2
include/linux/Kbuild
··· 20 20 header-y += usb/ 21 21 header-y += wimax/ 22 22 23 - objhdr-y += version.h 24 - 25 23 ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h \ 26 24 $(srctree)/include/asm-$(SRCARCH)/a.out.h \ 27 25 $(INSTALL_HDR_PATH)/include/asm-*/a.out.h),)
+1 -1
include/linux/bcma/bcma.h
··· 10 10 #include <linux/bcma/bcma_driver_gmac_cmn.h> 11 11 #include <linux/ssb/ssb.h> /* SPROM sharing */ 12 12 13 - #include "bcma_regs.h" 13 + #include <linux/bcma/bcma_regs.h> 14 14 15 15 struct bcma_device; 16 16 struct bcma_bus;
+2 -2
include/linux/ceph/ceph_fs.h
··· 12 12 #ifndef CEPH_FS_H 13 13 #define CEPH_FS_H 14 14 15 - #include "msgr.h" 16 - #include "rados.h" 15 + #include <linux/ceph/msgr.h> 16 + #include <linux/ceph/rados.h> 17 17 18 18 /* 19 19 * subprotocol versions. when specific messages types or high-level
+2 -2
include/linux/ceph/debugfs.h
··· 1 1 #ifndef _FS_CEPH_DEBUGFS_H 2 2 #define _FS_CEPH_DEBUGFS_H 3 3 4 - #include "ceph_debug.h" 5 - #include "types.h" 4 + #include <linux/ceph/ceph_debug.h> 5 + #include <linux/ceph/types.h> 6 6 7 7 #define CEPH_DEFINE_SHOW_FUNC(name) \ 8 8 static int name##_open(struct inode *inode, struct file *file) \
+1 -1
include/linux/ceph/decode.h
··· 6 6 #include <linux/time.h> 7 7 #include <asm/unaligned.h> 8 8 9 - #include "types.h" 9 + #include <linux/ceph/types.h> 10 10 11 11 /* 12 12 * in all cases,
+7 -7
include/linux/ceph/libceph.h
··· 1 1 #ifndef _FS_CEPH_LIBCEPH_H 2 2 #define _FS_CEPH_LIBCEPH_H 3 3 4 - #include "ceph_debug.h" 4 + #include <linux/ceph/ceph_debug.h> 5 5 6 6 #include <asm/unaligned.h> 7 7 #include <linux/backing-dev.h> ··· 15 15 #include <linux/writeback.h> 16 16 #include <linux/slab.h> 17 17 18 - #include "types.h" 19 - #include "messenger.h" 20 - #include "msgpool.h" 21 - #include "mon_client.h" 22 - #include "osd_client.h" 23 - #include "ceph_fs.h" 18 + #include <linux/ceph/types.h> 19 + #include <linux/ceph/messenger.h> 20 + #include <linux/ceph/msgpool.h> 21 + #include <linux/ceph/mon_client.h> 22 + #include <linux/ceph/osd_client.h> 23 + #include <linux/ceph/ceph_fs.h> 24 24 25 25 /* 26 26 * mount options
+1 -1
include/linux/ceph/mdsmap.h
··· 2 2 #define _FS_CEPH_MDSMAP_H 3 3 4 4 #include <linux/bug.h> 5 - #include "types.h" 5 + #include <linux/ceph/types.h> 6 6 7 7 /* 8 8 * mds map - describe servers in the mds cluster.
+2 -2
include/linux/ceph/messenger.h
··· 8 8 #include <linux/uio.h> 9 9 #include <linux/workqueue.h> 10 10 11 - #include "types.h" 12 - #include "buffer.h" 11 + #include <linux/ceph/types.h> 12 + #include <linux/ceph/buffer.h> 13 13 14 14 struct ceph_msg; 15 15 struct ceph_connection;
+1 -1
include/linux/ceph/mon_client.h
··· 5 5 #include <linux/kref.h> 6 6 #include <linux/rbtree.h> 7 7 8 - #include "messenger.h" 8 + #include <linux/ceph/messenger.h> 9 9 10 10 struct ceph_client; 11 11 struct ceph_mount_args;
+1 -1
include/linux/ceph/msgpool.h
··· 2 2 #define _FS_CEPH_MSGPOOL 3 3 4 4 #include <linux/mempool.h> 5 - #include "messenger.h" 5 + #include <linux/ceph/messenger.h> 6 6 7 7 /* 8 8 * we use memory pools for preallocating messages we may receive, to
+2 -2
include/linux/ceph/osdmap.h
··· 2 2 #define _FS_CEPH_OSDMAP_H 3 3 4 4 #include <linux/rbtree.h> 5 - #include "types.h" 6 - #include "ceph_fs.h" 5 + #include <linux/ceph/types.h> 6 + #include <linux/ceph/ceph_fs.h> 7 7 #include <linux/crush/crush.h> 8 8 9 9 /*
+1 -1
include/linux/ceph/rados.h
··· 6 6 * (Reliable Autonomic Distributed Object Store). 7 7 */ 8 8 9 - #include "msgr.h" 9 + #include <linux/ceph/msgr.h> 10 10 11 11 /* 12 12 * osdmap encoding versions
+3 -3
include/linux/ceph/types.h
··· 7 7 #include <linux/fcntl.h> 8 8 #include <linux/string.h> 9 9 10 - #include "ceph_fs.h" 11 - #include "ceph_frag.h" 12 - #include "ceph_hash.h" 10 + #include <linux/ceph/ceph_fs.h> 11 + #include <linux/ceph/ceph_frag.h> 12 + #include <linux/ceph/ceph_hash.h> 13 13 14 14 /* 15 15 * Identify inodes by both their ino AND snapshot id (a u64).
+1 -1
include/linux/crush/mapper.h
··· 8 8 * LGPL2 9 9 */ 10 10 11 - #include "crush.h" 11 + #include <linux/crush/crush.h> 12 12 13 13 extern int crush_find_rule(const struct crush_map *map, int ruleset, int type, int size); 14 14 extern int crush_do_rule(const struct crush_map *map,
+4 -4
include/linux/drbd_tag_magic.h
··· 12 12 #define NL_INT64(pn, pr, member) 13 13 #define NL_BIT(pn, pr, member) 14 14 #define NL_STRING(pn, pr, member, len) 15 - #include "drbd_nl.h" 15 + #include <linux/drbd_nl.h> 16 16 P_nl_after_last_packet, 17 17 }; 18 18 ··· 37 37 #define NL_INT64(pn, pr, member) + 4 + 8 38 38 #define NL_BIT(pn, pr, member) + 4 + 1 39 39 #define NL_STRING(pn, pr, member, len) + 4 + (len) 40 - #include "drbd_nl.h" 40 + #include <linux/drbd_nl.h> 41 41 }; 42 42 43 43 /* The two highest bits are used for the tag type */ ··· 62 62 #define NL_INT64(pn, pr, member) T_ ## member = pn | TT_INT64 | pr , 63 63 #define NL_BIT(pn, pr, member) T_ ## member = pn | TT_BIT | pr , 64 64 #define NL_STRING(pn, pr, member, len) T_ ## member = pn | TT_STRING | pr , 65 - #include "drbd_nl.h" 65 + #include <linux/drbd_nl.h> 66 66 }; 67 67 68 68 struct tag { ··· 78 78 #define NL_INT64(pn, pr, member) [ pn ] = { #member, TT_INT64 | pr, sizeof(__u64) }, 79 79 #define NL_BIT(pn, pr, member) [ pn ] = { #member, TT_BIT | pr, sizeof(int) }, 80 80 #define NL_STRING(pn, pr, member, len) [ pn ] = { #member, TT_STRING | pr, (len) }, 81 - #include "drbd_nl.h" 81 + #include <linux/drbd_nl.h> 82 82 }; 83 83 84 84 #endif
+2 -2
include/linux/libfdt.h
··· 2 2 #define _INCLUDE_LIBFDT_H_ 3 3 4 4 #include <linux/libfdt_env.h> 5 - #include "../../scripts/dtc/libfdt/fdt.h" 6 - #include "../../scripts/dtc/libfdt/libfdt.h" 5 + #include <> 6 + #include <> 7 7 8 8 #endif /* _INCLUDE_LIBFDT_H_ */
+1 -1
include/linux/netfilter/nf_conntrack_h323_asn1.h
··· 40 40 /***************************************************************************** 41 41 * H.323 Types 42 42 ****************************************************************************/ 43 - #include "nf_conntrack_h323_types.h" 43 + #include <linux/netfilter/nf_conntrack_h323_types.h> 44 44 45 45 typedef struct { 46 46 enum {
+1 -1
include/linux/pinctrl/consumer.h
··· 15 15 #include <linux/err.h> 16 16 #include <linux/list.h> 17 17 #include <linux/seq_file.h> 18 - #include "pinctrl-state.h" 18 + #include <linux/pinctrl/pinctrl-state.h> 19 19 20 20 /* This struct is private to the core and should be regarded as a cookie */ 21 21 struct pinctrl;
+1 -1
include/linux/pinctrl/machine.h
··· 14 14 15 15 #include <linux/bug.h> 16 16 17 - #include "pinctrl-state.h" 17 + #include <linux/pinctrl/pinctrl-state.h> 18 18 19 19 enum pinctrl_map_type { 20 20 PIN_MAP_TYPE_INVALID,
+1 -1
include/linux/pinctrl/pinctrl.h
··· 17 17 #include <linux/radix-tree.h> 18 18 #include <linux/list.h> 19 19 #include <linux/seq_file.h> 20 - #include "pinctrl-state.h" 20 + #include <linux/pinctrl/pinctrl-state.h> 21 21 22 22 struct device; 23 23 struct pinctrl_dev;
+1 -1
include/linux/pinctrl/pinmux.h
··· 14 14 15 15 #include <linux/list.h> 16 16 #include <linux/seq_file.h> 17 - #include "pinctrl.h" 17 + #include <linux/pinctrl/pinctrl.h> 18 18 19 19 #ifdef CONFIG_PINMUX 20 20
+1 -1
include/scsi/osd_attributes.h
··· 1 1 #ifndef __OSD_ATTRIBUTES_H__ 2 2 #define __OSD_ATTRIBUTES_H__ 3 3 4 - #include "osd_protocol.h" 4 + #include <scsi/osd_protocol.h> 5 5 6 6 /* 7 7 * Contains types and constants that define attribute pages and attribute
+2 -2
include/scsi/osd_initiator.h
··· 14 14 #ifndef __OSD_INITIATOR_H__ 15 15 #define __OSD_INITIATOR_H__ 16 16 17 - #include "osd_protocol.h" 18 - #include "osd_types.h" 17 + #include <scsi/osd_protocol.h> 18 + #include <scsi/osd_types.h> 19 19 20 20 #include <linux/blkdev.h> 21 21 #include <scsi/scsi_device.h>
+2 -2
include/scsi/osd_sec.h
··· 14 14 #ifndef __OSD_SEC_H__ 15 15 #define __OSD_SEC_H__ 16 16 17 - #include "osd_protocol.h" 18 - #include "osd_types.h" 17 + #include <scsi/osd_protocol.h> 18 + #include <scsi/osd_types.h> 19 19 20 20 /* 21 21 * Contains types and constants of osd capabilities and security
+3 -3
include/sound/ac97_codec.h
··· 28 28 #include <linux/bitops.h> 29 29 #include <linux/device.h> 30 30 #include <linux/workqueue.h> 31 - #include "pcm.h" 32 - #include "control.h" 33 - #include "info.h" 31 + #include <sound/pcm.h> 32 + #include <sound/control.h> 33 + #include <sound/info.h> 34 34 35 35 /* maximum number of devices on the AC97 bus */ 36 36 #define AC97_BUS_MAX_DEVICES 4
+3 -3
include/sound/ad1816a.h
··· 20 20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 21 */ 22 22 23 - #include "control.h" 24 - #include "pcm.h" 25 - #include "timer.h" 23 + #include <sound/control.h> 24 + #include <sound/pcm.h> 25 + #include <sound/timer.h> 26 26 27 27 #define AD1816A_REG(r) (chip->port + r) 28 28
+2 -2
include/sound/ak4531_codec.h
··· 25 25 * 26 26 */ 27 27 28 - #include "info.h" 29 - #include "control.h" 28 + #include <sound/info.h> 29 + #include <sound/control.h> 30 30 31 31 /* 32 32 * ASAHI KASEI - AK4531 codec
+2 -2
include/sound/emu10k1_synth.h
··· 20 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 21 */ 22 22 23 - #include "emu10k1.h" 24 - #include "emux_synth.h" 23 + #include <sound/emu10k1.h> 24 + #include <sound/emux_synth.h> 25 25 26 26 /* sequencer device id */ 27 27 #define SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH "emu10k1-synth"
+2 -2
include/sound/emu8000.h
··· 21 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 22 */ 23 23 24 - #include "emux_synth.h" 25 - #include "seq_kernel.h" 24 + #include <sound/emux_synth.h> 25 + #include <sound/seq_kernel.h> 26 26 27 27 /* 28 28 * Hardware parameters.
+1 -1
include/sound/emux_legacy.h
··· 22 22 * 23 23 */ 24 24 25 - #include "seq_oss_legacy.h" 25 + #include <sound/seq_oss_legacy.h> 26 26 27 27 /* 28 28 * awe hardware controls
+7 -7
include/sound/emux_synth.h
··· 21 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 22 */ 23 23 24 - #include "seq_kernel.h" 25 - #include "seq_device.h" 26 - #include "soundfont.h" 27 - #include "seq_midi_emul.h" 24 + #include <sound/seq_kernel.h> 25 + #include <sound/seq_device.h> 26 + #include <sound/soundfont.h> 27 + #include <sound/seq_midi_emul.h> 28 28 #ifdef CONFIG_SND_SEQUENCER_OSS 29 - #include "seq_oss.h" 29 + #include <sound/seq_oss.h> 30 30 #endif 31 - #include "emux_legacy.h" 32 - #include "seq_virmidi.h" 31 + #include <sound/emux_legacy.h> 32 + #include <sound/seq_virmidi.h> 33 33 34 34 /* 35 35 * compile flags
+2 -2
include/sound/es1688.h
··· 22 22 * 23 23 */ 24 24 25 - #include "control.h" 26 - #include "pcm.h" 25 + #include <sound/control.h> 26 + #include <sound/pcm.h> 27 27 #include <linux/interrupt.h> 28 28 29 29 #define ES1688_HW_AUTO 0x0000
+5 -5
include/sound/gus.h
··· 22 22 * 23 23 */ 24 24 25 - #include "pcm.h" 26 - #include "rawmidi.h" 27 - #include "timer.h" 28 - #include "seq_midi_emul.h" 29 - #include "seq_device.h" 25 + #include <sound/pcm.h> 26 + #include <sound/rawmidi.h> 27 + #include <sound/timer.h> 28 + #include <sound/seq_midi_emul.h> 29 + #include <sound/seq_device.h> 30 30 #include <asm/io.h> 31 31 32 32 /* IO ports */
+1 -1
include/sound/mpu401.h
··· 22 22 * 23 23 */ 24 24 25 - #include "rawmidi.h" 25 + #include <sound/rawmidi.h> 26 26 #include <linux/interrupt.h> 27 27 28 28 #define MPU401_HW_MPU401 1 /* native MPU401 */
+1 -1
include/sound/pcm.h
··· 35 35 #define snd_pcm_chip(pcm) ((pcm)->private_data) 36 36 37 37 #if defined(CONFIG_SND_PCM_OSS) || defined(CONFIG_SND_PCM_OSS_MODULE) 38 - #include "pcm_oss.h" 38 + #include <sound/pcm_oss.h> 39 39 #endif 40 40 41 41 /*
+1 -1
include/sound/rawmidi.h
··· 30 30 #include <linux/workqueue.h> 31 31 32 32 #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE) 33 - #include "seq_device.h" 33 + #include <sound/seq_device.h> 34 34 #endif 35 35 36 36 /*
+2 -2
include/sound/sb.h
··· 22 22 * 23 23 */ 24 24 25 - #include "pcm.h" 26 - #include "rawmidi.h" 25 + #include <sound/pcm.h> 26 + #include <sound/rawmidi.h> 27 27 #include <linux/interrupt.h> 28 28 #include <asm/io.h> 29 29
+2 -2
include/sound/sb16_csp.h
··· 119 119 #define SNDRV_SB_CSP_IOCTL_RESTART _IO('H', 0x16) 120 120 121 121 #ifdef __KERNEL__ 122 - #include "sb.h" 123 - #include "hwdep.h" 122 + #include <sound/sb.h> 123 + #include <sound/hwdep.h> 124 124 #include <linux/firmware.h> 125 125 126 126 struct snd_sb_csp;
+1 -1
include/sound/seq_kernel.h
··· 22 22 * 23 23 */ 24 24 #include <linux/time.h> 25 - #include "asequencer.h" 25 + #include <sound/asequencer.h> 26 26 27 27 typedef struct snd_seq_real_time snd_seq_real_time_t; 28 28 typedef union snd_seq_timestamp snd_seq_timestamp_t;
+1 -1
include/sound/seq_midi_emul.h
··· 22 22 * 23 23 */ 24 24 25 - #include "seq_kernel.h" 25 + #include <sound/seq_kernel.h> 26 26 27 27 /* 28 28 * This structure is used to keep track of the current state on each
+1 -1
include/sound/seq_midi_event.h
··· 22 22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 23 */ 24 24 25 - #include "asequencer.h" 25 + #include <sound/asequencer.h> 26 26 27 27 #define MAX_MIDI_EVENT_BUF 256 28 28
+2 -2
include/sound/seq_oss.h
··· 21 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 22 */ 23 23 24 - #include "asequencer.h" 25 - #include "seq_kernel.h" 24 + #include <sound/asequencer.h> 25 + #include <sound/seq_kernel.h> 26 26 27 27 /* 28 28 * argument structure for synthesizer operations
+2 -2
include/sound/seq_virmidi.h
··· 22 22 * 23 23 */ 24 24 25 - #include "rawmidi.h" 26 - #include "seq_midi_event.h" 25 + #include <sound/rawmidi.h> 26 + #include <sound/seq_midi_event.h> 27 27 28 28 /* 29 29 * device file instance:
+4 -4
include/sound/snd_wavefront.h
··· 1 1 #ifndef __SOUND_SND_WAVEFRONT_H__ 2 2 #define __SOUND_SND_WAVEFRONT_H__ 3 3 4 - #include "mpu401.h" 5 - #include "hwdep.h" 6 - #include "rawmidi.h" 7 - #include "wavefront.h" /* generic OSS/ALSA/user-level wavefront header */ 4 + #include <sound/mpu401.h> 5 + #include <sound/hwdep.h> 6 + #include <sound/rawmidi.h> 7 + #include <sound/wavefront.h> /* generic OSS/ALSA/user-level wavefront header */ 8 8 9 9 /* MIDI interface */ 10 10
+2 -2
include/sound/soundfont.h
··· 22 22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 23 */ 24 24 25 - #include "sfnt_info.h" 26 - #include "util_mem.h" 25 + #include <sound/sfnt_info.h> 26 + #include <sound/util_mem.h> 27 27 28 28 #define SF_MAX_INSTRUMENTS 128 /* maximum instrument number */ 29 29 #define SF_MAX_PRESETS 256 /* drums are mapped from 128 to 256 */
+1 -1
include/sound/tea6330t.h
··· 22 22 * 23 23 */ 24 24 25 - #include "i2c.h" /* generic i2c support */ 25 + #include <sound/i2c.h> /* generic i2c support */ 26 26 27 27 int snd_tea6330t_detect(struct snd_i2c_bus *bus, int equalizer); 28 28 int snd_tea6330t_update_mixer(struct snd_card *card, struct snd_i2c_bus *bus,
+4 -4
include/sound/wss.h
··· 22 22 * 23 23 */ 24 24 25 - #include "control.h" 26 - #include "pcm.h" 27 - #include "timer.h" 25 + #include <sound/control.h> 26 + #include <sound/pcm.h> 27 + #include <sound/timer.h> 28 28 29 - #include "cs4231-regs.h" 29 + #include <sound/cs4231-regs.h> 30 30 31 31 /* defines for codec.mode */ 32 32
+1 -1
include/trace/events/compaction.h
··· 6 6 7 7 #include <linux/types.h> 8 8 #include <linux/tracepoint.h> 9 - #include "gfpflags.h" 9 + #include <trace/events/gfpflags.h> 10 10 11 11 DECLARE_EVENT_CLASS(mm_compaction_isolate_template, 12 12
+1 -1
include/trace/events/kmem.h
··· 6 6 7 7 #include <linux/types.h> 8 8 #include <linux/tracepoint.h> 9 - #include "gfpflags.h" 9 + #include <trace/events/gfpflags.h> 10 10 11 11 DECLARE_EVENT_CLASS(kmem_alloc, 12 12
+1 -1
include/trace/events/vmscan.h
··· 8 8 #include <linux/tracepoint.h> 9 9 #include <linux/mm.h> 10 10 #include <linux/memcontrol.h> 11 - #include "gfpflags.h" 11 + #include <trace/events/gfpflags.h> 12 12 13 13 #define RECLAIM_WB_ANON 0x0001u 14 14 #define RECLAIM_WB_FILE 0x0002u
+14
include/uapi/Kbuild
··· 1 + # UAPI Header export list 2 + # Top-level Makefile calls into asm-$(ARCH) 3 + # List only non-arch directories below 4 + 5 + 6 + header-y += asm-generic/ 7 + header-y += linux/ 8 + header-y += sound/ 9 + header-y += mtd/ 10 + header-y += rdma/ 11 + header-y += video/ 12 + header-y += drm/ 13 + header-y += xen/ 14 + header-y += scsi/
+1
include/uapi/asm-generic/Kbuild
··· 1 + # UAPI Header export list
+49
include/uapi/asm-generic/Kbuild.asm
··· 1 + # 2 + # Headers that are optional in usr/include/asm/ 3 + # 4 + opt-header += kvm.h 5 + opt-header += kvm_para.h 6 + opt-header += a.out.h 7 + 8 + # 9 + # Headers that are mandatory in usr/include/asm/ 10 + # 11 + header-y += auxvec.h 12 + header-y += bitsperlong.h 13 + header-y += byteorder.h 14 + header-y += errno.h 15 + header-y += fcntl.h 16 + header-y += ioctl.h 17 + header-y += ioctls.h 18 + header-y += ipcbuf.h 19 + header-y += mman.h 20 + header-y += msgbuf.h 21 + header-y += param.h 22 + header-y += poll.h 23 + header-y += posix_types.h 24 + header-y += ptrace.h 25 + header-y += resource.h 26 + header-y += sembuf.h 27 + header-y += setup.h 28 + header-y += shmbuf.h 29 + header-y += sigcontext.h 30 + header-y += siginfo.h 31 + header-y += signal.h 32 + header-y += socket.h 33 + header-y += sockios.h 34 + header-y += stat.h 35 + header-y += statfs.h 36 + header-y += swab.h 37 + header-y += termbits.h 38 + header-y += termios.h 39 + header-y += types.h 40 + header-y += unistd.h 41 + 42 + header-y += $(foreach hdr,$(opt-header), \ 43 + $(if \ 44 + $(wildcard \ 45 + $(srctree)/arch/$(SRCARCH)/include/uapi/asm/$(hdr) \ 46 + $(srctree)/arch/$(SRCARCH)/include/asm/$(hdr) \ 47 + ), \ 48 + $(hdr) \ 49 + ))
+1
include/uapi/drm/Kbuild
··· 1 + # UAPI Header export list
+24
include/uapi/linux/Kbuild
··· 1 + # UAPI Header export list 2 + header-y += byteorder/ 3 + header-y += can/ 4 + header-y += caif/ 5 + header-y += dvb/ 6 + header-y += hdlc/ 7 + header-y += hsi/ 8 + header-y += isdn/ 9 + header-y += mmc/ 10 + header-y += nfsd/ 11 + header-y += raid/ 12 + header-y += spi/ 13 + header-y += sunrpc/ 14 + header-y += tc_act/ 15 + header-y += tc_ematch/ 16 + header-y += netfilter/ 17 + header-y += netfilter_arp/ 18 + header-y += netfilter_bridge/ 19 + header-y += netfilter_ipv4/ 20 + header-y += netfilter_ipv6/ 21 + header-y += usb/ 22 + header-y += wimax/ 23 + 24 + genhdr-y += version.h
+1
include/uapi/linux/byteorder/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/caif/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/can/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/dvb/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/hdlc/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/hsi/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/isdn/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/mmc/Kbuild
··· 1 + # UAPI Header export list
+2
include/uapi/linux/netfilter/Kbuild
··· 1 + # UAPI Header export list 2 + header-y += ipset/
+1
include/uapi/linux/netfilter/ipset/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/netfilter_arp/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/netfilter_bridge/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/netfilter_ipv4/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/netfilter_ipv6/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/nfsd/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/raid/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/spi/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/sunrpc/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/tc_act/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/tc_ematch/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/usb/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/linux/wimax/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/mtd/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/rdma/Kbuild
··· 1 + # UAPI Header export list
+2
include/uapi/scsi/Kbuild
··· 1 + # UAPI Header export list 2 + header-y += fc/
+1
include/uapi/scsi/fc/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/sound/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/video/Kbuild
··· 1 + # UAPI Header export list
+1
include/uapi/xen/Kbuild
··· 1 + # UAPI Header export list
+1 -1
include/xen/interface/callback.h
··· 27 27 #ifndef __XEN_PUBLIC_CALLBACK_H__ 28 28 #define __XEN_PUBLIC_CALLBACK_H__ 29 29 30 - #include "xen.h" 30 + #include <xen/interface/xen.h> 31 31 32 32 /* 33 33 * Prototype for this hypercall is:
+1 -1
include/xen/interface/hvm/params.h
··· 21 21 #ifndef __XEN_PUBLIC_HVM_PARAMS_H__ 22 22 #define __XEN_PUBLIC_HVM_PARAMS_H__ 23 23 24 - #include "hvm_op.h" 24 + #include <xen/interface/hvm/hvm_op.h> 25 25 26 26 /* 27 27 * Parameter space for HVMOP_{set,get}_param.
+2 -2
include/xen/interface/io/blkif.h
··· 9 9 #ifndef __XEN_PUBLIC_IO_BLKIF_H__ 10 10 #define __XEN_PUBLIC_IO_BLKIF_H__ 11 11 12 - #include "ring.h" 13 - #include "../grant_table.h" 12 + #include <xen/interface/io/ring.h> 13 + #include <xen/interface/grant_table.h> 14 14 15 15 /* 16 16 * Front->back notifications: When enqueuing a new request, sending a
+2 -2
include/xen/interface/io/netif.h
··· 9 9 #ifndef __XEN_PUBLIC_IO_NETIF_H__ 10 10 #define __XEN_PUBLIC_IO_NETIF_H__ 11 11 12 - #include "ring.h" 13 - #include "../grant_table.h" 12 + #include <xen/interface/io/ring.h> 13 + #include <xen/interface/grant_table.h> 14 14 15 15 /* 16 16 * Notifications after enqueuing any type of message should be conditional on
+1 -1
include/xen/interface/platform.h
··· 27 27 #ifndef __XEN_PUBLIC_PLATFORM_H__ 28 28 #define __XEN_PUBLIC_PLATFORM_H__ 29 29 30 - #include "xen.h" 30 + #include <xen/interface/xen.h> 31 31 32 32 #define XENPF_INTERFACE_VERSION 0x03000001 33 33
+1 -1
include/xen/interface/sched.h
··· 9 9 #ifndef __XEN_PUBLIC_SCHED_H__ 10 10 #define __XEN_PUBLIC_SCHED_H__ 11 11 12 - #include "event_channel.h" 12 + #include <xen/interface/event_channel.h> 13 13 14 14 /* 15 15 * The prototype for this hypercall is:
+1 -1
include/xen/interface/version.h
··· 55 55 }; 56 56 57 57 /* Declares the features reported by XENVER_get_features. */ 58 - #include "features.h" 58 + #include <xen/interface/features.h> 59 59 60 60 /* arg == NULL; returns host memory page size. */ 61 61 #define XENVER_pagesize 7
+33 -19
scripts/Makefile.headersinst
··· 3 3 # 4 4 # header-y - list files to be installed. They are preprocessed 5 5 # to remove __KERNEL__ section of the file 6 - # objhdr-y - Same as header-y but for generated files 7 - # genhdr-y - Same as objhdr-y but in a generated/ directory 6 + # genhdr-y - Same as header-y but in a generated/ directory 8 7 # 9 8 # ========================================================================== 10 9 11 10 # called may set destination dir (when installing to asm/) 12 - _dst := $(if $(dst),$(dst),$(obj)) 11 + _dst := $(or $(destination-y),$(dst),$(obj)) 13 12 14 13 # generated header directory 15 14 gen := $(if $(gen),$(gen),$(subst include/,include/generated/,$(obj))) ··· 16 17 kbuild-file := $(srctree)/$(obj)/Kbuild 17 18 include $(kbuild-file) 18 19 19 - _dst := $(if $(destination-y),$(destination-y),$(_dst)) 20 + old-kbuild-file := $(srctree)/$(subst uapi/,,$(obj))/Kbuild 21 + ifneq ($(wildcard $(old-kbuild-file)),) 22 + include $(old-kbuild-file) 23 + endif 20 24 21 25 include scripts/Kbuild.include 22 26 23 - install := $(INSTALL_HDR_PATH)/$(_dst) 27 + installdir := $(INSTALL_HDR_PATH)/$(subst uapi/,,$(_dst)) 24 28 25 29 header-y := $(sort $(header-y)) 26 30 subdirs := $(patsubst %/,%,$(filter %/, $(header-y))) 27 31 header-y := $(filter-out %/, $(header-y)) 28 32 29 33 # files used to track state of install/check 30 - install-file := $(install)/.install 31 - check-file := $(install)/.check 34 + install-file := $(installdir)/.install 35 + check-file := $(installdir)/.check 32 36 33 37 # generic-y list all files an architecture uses from asm-generic 34 38 # Use this to build a list of headers which require a wrapper 35 39 wrapper-files := $(filter $(header-y), $(generic-y)) 36 40 41 + srcdir := $(srctree)/$(obj) 42 + gendir := $(objtree)/$(gen) 43 + 44 + oldsrcdir := $(srctree)/$(subst /uapi,,$(obj)) 45 + 37 46 # all headers files for this dir 38 47 header-y := $(filter-out $(generic-y), $(header-y)) 39 - all-files := $(header-y) $(objhdr-y) $(genhdr-y) $(wrapper-files) 40 - input-files := $(addprefix $(srctree)/$(obj)/,$(header-y)) \ 41 - $(addprefix $(objtree)/$(obj)/,$(objhdr-y)) \ 42 - $(addprefix $(objtree)/$(gen)/,$(genhdr-y)) 43 - output-files := $(addprefix $(install)/, $(all-files)) 48 + all-files := $(header-y) $(genhdr-y) $(wrapper-files) 49 + output-files := $(addprefix $(installdir)/, $(all-files)) 50 + 51 + input-files := $(foreach hdr, $(header-y), \ 52 + $(or \ 53 + $(wildcard $(srcdir)/$(hdr)), \ 54 + $(wildcard $(oldsrcdir)/$(hdr)), \ 55 + $(error Missing UAPI file $(srcdir)/$(hdr)) \ 56 + )) \ 57 + $(foreach hdr, $(genhdr-y), \ 58 + $(or \ 59 + $(wildcard $(gendir)/$(hdr)), \ 60 + $(error Missing generated UAPI file $(gendir)/$(hdr)) \ 61 + )) 44 62 45 63 # Work out what needs to be removed 46 - oldheaders := $(patsubst $(install)/%,%,$(wildcard $(install)/*.h)) 64 + oldheaders := $(patsubst $(installdir)/%,%,$(wildcard $(installdir)/*.h)) 47 65 unwanted := $(filter-out $(all-files),$(oldheaders)) 48 66 49 67 # Prefix unwanted with full paths to $(INSTALL_HDR_PATH) 50 - unwanted-file := $(addprefix $(install)/, $(unwanted)) 68 + unwanted-file := $(addprefix $(installdir)/, $(unwanted)) 51 69 52 70 printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@)) 53 71 54 72 quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ 55 73 file$(if $(word 2, $(all-files)),s)) 56 74 cmd_install = \ 57 - $(PERL) $< $(srctree)/$(obj) $(install) $(SRCARCH) $(header-y); \ 58 - $(PERL) $< $(objtree)/$(obj) $(install) $(SRCARCH) $(objhdr-y); \ 59 - $(PERL) $< $(objtree)/$(gen) $(install) $(SRCARCH) $(genhdr-y); \ 75 + $(PERL) $< $(installdir) $(SRCARCH) $(input-files); \ 60 76 for F in $(wrapper-files); do \ 61 - echo "\#include <asm-generic/$$F>" > $(install)/$$F; \ 77 + echo "\#include <asm-generic/$$F>" > $(installdir)/$$F; \ 62 78 done; \ 63 79 touch $@ 64 80 ··· 84 70 # Headers list can be pretty long, xargs helps to avoid 85 71 # the "Argument list too long" error. 86 72 cmd_check = for f in $(all-files); do \ 87 - echo "$(install)/$${f}"; done \ 73 + echo "$(installdir)/$${f}"; done \ 88 74 | xargs \ 89 75 $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH); \ 90 76 touch $@
+8 -6
scripts/headers_install.pl
··· 4 4 # user space and copy the files to their destination. 5 5 # 6 6 # Usage: headers_install.pl readdir installdir arch [files...] 7 - # readdir: dir to open files 8 - # installdir: dir to install the files 7 + # installdir: dir to install the files to 9 8 # arch: current architecture 10 9 # arch is used to force a reinstallation when the arch 11 10 # changes because kbuild then detect a command line change. ··· 17 18 18 19 use strict; 19 20 20 - my ($readdir, $installdir, $arch, @files) = @ARGV; 21 + my ($installdir, $arch, @files) = @ARGV; 21 22 22 23 my $unifdef = "scripts/unifdef -U__KERNEL__ -D__EXPORTED_HEADERS__"; 23 24 24 - foreach my $file (@files) { 25 + foreach my $filename (@files) { 26 + my $file = $filename; 27 + $file =~ s!^.*/!!; 28 + 25 29 my $tmpfile = "$installdir/$file.tmp"; 26 30 27 - open(my $in, '<', "$readdir/$file") 28 - or die "$readdir/$file: $!\n"; 31 + open(my $in, '<', $filename) 32 + or die "$filename: $!\n"; 29 33 open(my $out, '>', $tmpfile) 30 34 or die "$tmpfile: $!\n"; 31 35 while (my $line = <$in>) {