From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751460AbdFEILh (ORCPT ); Mon, 5 Jun 2017 04:11:37 -0400 Received: from terminus.zytor.com ([65.50.211.136]:54229 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751336AbdFEILg (ORCPT ); Mon, 5 Jun 2017 04:11:36 -0400 Date: Mon, 5 Jun 2017 01:10:16 -0700 From: tip-bot for Christoph Hellwig Message-ID: Cc: linux-kernel@vger.kernel.org, arnd@arndb.de, davem@davemloft.net, mingo@kernel.org, tony.luck@intel.com, hpa@zytor.com, tglx@linutronix.de, hch@lst.de, fenghua.yu@intel.com Reply-To: hpa@zytor.com, fenghua.yu@intel.com, tglx@linutronix.de, hch@lst.de, davem@davemloft.net, arnd@arndb.de, linux-kernel@vger.kernel.org, mingo@kernel.org, tony.luck@intel.com In-Reply-To: <20170603190102.28866-2-hch@lst.de> References: <20170603190102.28866-2-hch@lst.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] sparc: Simplify Git-Commit-ID: f70c80068f073ace4b9071803d2e2691fe0c3d05 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: f70c80068f073ace4b9071803d2e2691fe0c3d05 Gitweb: http://git.kernel.org/tip/f70c80068f073ace4b9071803d2e2691fe0c3d05 Author: Christoph Hellwig AuthorDate: Sat, 3 Jun 2017 21:00:58 +0200 Committer: Thomas Gleixner CommitDate: Sun, 4 Jun 2017 15:11:45 +0200 sparc: Simplify There is no need for the forward declaration of compat_siginfo provided here. We can't yet use the generic header as we need to pull in the sparc-specific version of the uapi , but this prepares for removing the non-uapi entirely. Signed-off-by: Christoph Hellwig Acked-by: "David S. Miller" Signed-off-by: Thomas Gleixner Cc: linux-arch@vger.kernel.org Cc: Fenghua Yu Cc: Tony Luck Cc: linux-ia64@vger.kernel.org Cc: Arnd Bergmann Cc: sparclinux@vger.kernel.org Link: http://lkml.kernel.org/r/20170603190102.28866-2-hch@lst.de --- arch/sparc/include/asm/siginfo.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/arch/sparc/include/asm/siginfo.h b/arch/sparc/include/asm/siginfo.h index 48c34c1..dd2f2fc 100644 --- a/arch/sparc/include/asm/siginfo.h +++ b/arch/sparc/include/asm/siginfo.h @@ -1,13 +1 @@ -#ifndef __SPARC_SIGINFO_H -#define __SPARC_SIGINFO_H - #include - - -#ifdef CONFIG_COMPAT - -struct compat_siginfo; - -#endif /* CONFIG_COMPAT */ - -#endif /* !(__SPARC_SIGINFO_H) */