From patchwork Thu Mar 12 13:43:07 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Remis Lima Baima X-Patchwork-Id: 11378 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n2CDhNFk026532 for ; Thu, 12 Mar 2009 13:43:24 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755178AbZCLNnT (ORCPT ); Thu, 12 Mar 2009 09:43:19 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755202AbZCLNnT (ORCPT ); Thu, 12 Mar 2009 09:43:19 -0400 Received: from mail-ew0-f164.google.com ([209.85.219.164]:39279 "EHLO mail-ew0-f164.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755178AbZCLNnS (ORCPT ); Thu, 12 Mar 2009 09:43:18 -0400 Received: by mail-ew0-f164.google.com with SMTP id 8so337400ewy.13 for ; Thu, 12 Mar 2009 06:43:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=usKfc/VZ7tOK6mSUrzQEY1nDUKWOTftrCcF6B9WuyL4=; b=o34zQBwplijkfhRz6Gb9yClUp5fTbrGZz/3cFWrNpnCSQGYXmBpaqtKqxWEEGmklaa ZOvIVjXYHbH34P979ml4NtvBQQj0h57D+W7otF0Rb1zseNo/IO/WokNu9O6WDVvHAPiV qooJkYgAQSIAmua437fjz6q366pi2dNIVBBGI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=X9z/ZWhhO+n1Hzz2YibnDpBfhAef2XU6fo+U1h7c6YU7PcL761QQrHeiOcj3/kYaTR lPdx4oZyIID4D+O4Gg2xnXi0Ao6sBWK9uoJOGGGdF9HKEye3EtexvVZUi9c8xboohF1Z rsJmWrP9zh4TPa5YrrS895AFrSLHlATEnnwQ4= Received: by 10.216.26.201 with SMTP id c51mr3999845wea.228.1236865396258; Thu, 12 Mar 2009 06:43:16 -0700 (PDT) Received: from localhost (blueice2n1.de.ibm.com [195.212.29.171]) by mx.google.com with ESMTPS id 10sm683295eyz.30.2009.03.12.06.43.15 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 12 Mar 2009 06:43:15 -0700 (PDT) From: Remis Lima Baima To: linux-kbuild@vger.kernel.org Cc: Remis Lima Baima Subject: [PATCH 2/3] Apply generic headers for x86 Date: Thu, 12 Mar 2009 14:43:07 +0100 Message-Id: <1236865388-31590-3-git-send-email-remis.developer@googlemail.com> X-Mailer: git-send-email 1.5.6.3 In-Reply-To: <1236865388-31590-2-git-send-email-remis.developer@googlemail.com> References: <1236865388-31590-1-git-send-email-remis.developer@googlemail.com> <1236865388-31590-2-git-send-email-remis.developer@googlemail.com> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org This patch depends on patch d8b392b37469f570bd180f37be783367259f1d4b ("Create the infrastructure for generic headers"). Remove the dummy arch/x86/include/asm/XXX.h files. Add in the arch/x86/include/asm/Kbuild file the variable generic-y with the names of the removed arch/x86/include/asm/XXX.h files. The removed files will be automatically generated during the build process by the script scripts/Makefile.genericheaders. Signed-off-by: Remis Lima Baima --- arch/x86/include/asm/Kbuild | 9 +++++++++ arch/x86/include/asm/cputime.h | 1 - arch/x86/include/asm/errno.h | 1 - arch/x86/include/asm/fcntl.h | 1 - arch/x86/include/asm/ioctl.h | 1 - arch/x86/include/asm/poll.h | 1 - arch/x86/include/asm/resource.h | 1 - arch/x86/include/asm/rtc.h | 1 - arch/x86/include/asm/sections.h | 1 - 9 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 arch/x86/include/asm/cputime.h delete mode 100644 arch/x86/include/asm/errno.h delete mode 100644 arch/x86/include/asm/fcntl.h delete mode 100644 arch/x86/include/asm/ioctl.h delete mode 100644 arch/x86/include/asm/poll.h delete mode 100644 arch/x86/include/asm/resource.h delete mode 100644 arch/x86/include/asm/rtc.h delete mode 100644 arch/x86/include/asm/sections.h diff --git a/arch/x86/include/asm/Kbuild b/arch/x86/include/asm/Kbuild index 4a8e80c..ae936b1 100644 --- a/arch/x86/include/asm/Kbuild +++ b/arch/x86/include/asm/Kbuild @@ -22,3 +22,12 @@ unifdef-y += unistd_32.h unifdef-y += unistd_64.h unifdef-y += vm86.h unifdef-y += vsyscall.h + +generic-y += cputime.h +generic-y += errno.h +generic-y += fcntl.h +generic-y += ioctl.h +generic-y += poll.h +generic-y += resource.h +generic-y += rtc.h +generic-y += sections.h diff --git a/arch/x86/include/asm/cputime.h b/arch/x86/include/asm/cputime.h deleted file mode 100644 index 6d68ad7..0000000 --- a/arch/x86/include/asm/cputime.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/errno.h b/arch/x86/include/asm/errno.h deleted file mode 100644 index 4c82b50..0000000 --- a/arch/x86/include/asm/errno.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/fcntl.h b/arch/x86/include/asm/fcntl.h deleted file mode 100644 index 46ab12d..0000000 --- a/arch/x86/include/asm/fcntl.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/ioctl.h b/arch/x86/include/asm/ioctl.h deleted file mode 100644 index b279fe0..0000000 --- a/arch/x86/include/asm/ioctl.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/poll.h b/arch/x86/include/asm/poll.h deleted file mode 100644 index c98509d..0000000 --- a/arch/x86/include/asm/poll.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/resource.h b/arch/x86/include/asm/resource.h deleted file mode 100644 index 04bc4db..0000000 --- a/arch/x86/include/asm/resource.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/rtc.h b/arch/x86/include/asm/rtc.h deleted file mode 100644 index f71c3b0..0000000 --- a/arch/x86/include/asm/rtc.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/arch/x86/include/asm/sections.h b/arch/x86/include/asm/sections.h deleted file mode 100644 index 2b8c516..0000000 --- a/arch/x86/include/asm/sections.h +++ /dev/null @@ -1 +0,0 @@ -#include