From: Ethan Nelson-Moore Date: Sun, 17 May 2026 02:57:08 +0000 (-0700) Subject: x86: Remove unnecessary architecture-specific X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=c256d2a8adf2f5670ca262979c451ec4c1108e38;p=thirdparty%2Fkernel%2Flinux.git x86: Remove unnecessary architecture-specific arch/x86/include/asm/device.h is identical to include/asm-generic/device.h, and therefore the x86-specific version is unnecessary. Remove it. [ dhansen: Minor note: It looks like if asm/foo.h does not exist that the build system generates one that does a #include . Thus, all that needs to be done is remove the arch-specific one. ] Signed-off-by: Ethan Nelson-Moore Signed-off-by: Dave Hansen Link: https://patch.msgid.link/20260517025713.97791-1-enelsonmoore@gmail.com --- diff --git a/arch/x86/include/asm/device.h b/arch/x86/include/asm/device.h deleted file mode 100644 index 7c0a52ca2f4dd..0000000000000 --- a/arch/x86/include/asm/device.h +++ /dev/null @@ -1,11 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -#ifndef _ASM_X86_DEVICE_H -#define _ASM_X86_DEVICE_H - -struct dev_archdata { -}; - -struct pdev_archdata { -}; - -#endif /* _ASM_X86_DEVICE_H */