From patchwork Thu Mar 12 15:19:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 11434585 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id CF3931392 for ; Thu, 12 Mar 2020 15:20:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A392A2067C for ; Thu, 12 Mar 2020 15:20:26 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="iUlu01/A" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727936AbgCLPUZ (ORCPT ); Thu, 12 Mar 2020 11:20:25 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:38752 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727459AbgCLPUX (ORCPT ); Thu, 12 Mar 2020 11:20:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=mZJm55P2eEYhCMiFZYeq28BA1dMXbfVsRxzSlsg0Hy0=; b=iUlu01/AIbiH7ScJ3Ieug/1gBB 4x3foTUscQo3npa6fDD/bDmUQa4yg03S7FIqgh+5VypwxcBdkQ1f3iC/fCQkAspc5br0aqOtic/Nr m9YJGokk4J2s1yvUhADkouYuD/o84BdDn6b3UG5hX/HlocPIuUpjhtsO+uqKhlbMjLmJxR/ud+hu6 BmuAl4sgAV1SsnmEItva+rY321pXBc2o+QGkaocz5Y722OmEgLITHgD6+RAdJyNqN7nB+0E7rEekt HmOegc7CVZalkN52+4e2azcRyd0Z7t2sKtKqqb5rbUKSXCNL+4JtBvwWhW+oXmWStUzI4uC7TknfL yemkDr6w==; Received: from [2001:4bb8:184:5cad:8026:d98c:a056:3e33] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jCPdG-0007vX-Rd; Thu, 12 Mar 2020 15:20:23 +0000 From: Christoph Hellwig To: Jens Axboe Cc: linux-block@vger.kernel.org, linux-raid@vger.kernel.org, linux-scsi@vger.kernel.org, linux-ext4@vger.kernel.org, reiserfs-devel@vger.kernel.org Subject: [PATCH 14/21] block: remove block/partitions/osf.h Date: Thu, 12 Mar 2020 16:19:32 +0100 Message-Id: <20200312151939.645254-15-hch@lst.de> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200312151939.645254-1-hch@lst.de> References: <20200312151939.645254-1-hch@lst.de> MIME-Version: 1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org Just move the single define to block/partitions/osf.c. Signed-off-by: Christoph Hellwig --- block/partitions/osf.c | 2 +- block/partitions/osf.h | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 block/partitions/osf.h diff --git a/block/partitions/osf.c b/block/partitions/osf.c index 4b873973d6c0..84560d0765ed 100644 --- a/block/partitions/osf.c +++ b/block/partitions/osf.c @@ -9,9 +9,9 @@ */ #include "check.h" -#include "osf.h" #define MAX_OSF_PARTITIONS 18 +#define DISKLABELMAGIC (0x82564557UL) int osf_partition(struct parsed_partitions *state) { diff --git a/block/partitions/osf.h b/block/partitions/osf.h deleted file mode 100644 index 80a58c382b3f..000000000000 --- a/block/partitions/osf.h +++ /dev/null @@ -1,7 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/* - * fs/partitions/osf.h - */ - -#define DISKLABELMAGIC (0x82564557UL) -