From patchwork Sat Jun 3 19:00:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 770831 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3wg9SL306Vz9s3T for ; Sun, 4 Jun 2017 05:02:26 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=infradead.org header.i=@infradead.org header.b="Q7Gz3SBt"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751212AbdFCTBO (ORCPT ); Sat, 3 Jun 2017 15:01:14 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:48457 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751154AbdFCTBM (ORCPT ); Sat, 3 Jun 2017 15:01:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=QrZmIzTOv16CzPH/iihBRlFw/6Fu0ag9K9YTSWZktgA=; b=Q7Gz3SBttGv2dsFFzIu1zAD+x 0pj9slyr26ZqGuWTJ/KT0bpmX1EgVUMkXdusVJDmnDV9F1Y65tRMz6B9rJ6UTNGzhgBKJ0ca14gaX P2XDfX0qQ6G1N9vxyzlBoqDYfejPy30UjbfVAnvz9QEiqml7Cb14pgf9S3AeCnhQwrqthn6LZ8cYb Jor9lj942WHyP6RfXOe7vojO1szneP3B+0X6MhcvVpYrewH1bIZf4S6LeK6pBsUU4TU+H8fwngGtg o6zQbxfI0g47LwJ0ihYMN6WgpjvttXoDZ9QJ9qAG/EI3cD0psuijKuhXjky27Bi57uM8jfN639Yfb wOS6r6HHQ==; Received: from p4ff2fcbf.dip0.t-ipconnect.de ([79.242.252.191] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dHEIO-0002TL-VW; Sat, 03 Jun 2017 19:01:09 +0000 From: Christoph Hellwig To: Arnd Bergmann , Thomas Gleixner , "David S. Miller" , Tony Luck , Fenghua Yu Cc: linux-arch@vger.kernel.org, sparclinux@vger.kernel.org, linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/5] sparc: simplify Date: Sat, 3 Jun 2017 21:00:58 +0200 Message-Id: <20170603190102.28866-2-hch@lst.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170603190102.28866-1-hch@lst.de> References: <20170603190102.28866-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: sparclinux-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: sparclinux@vger.kernel.org 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 --- 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 48c34c19f810..dd2f2fce976b 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) */