From patchwork Sat Apr 15 06:54:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabian Frederick X-Patchwork-Id: 9682149 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id AE981601E7 for ; Sat, 15 Apr 2017 06:55:22 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A116F24DA2 for ; Sat, 15 Apr 2017 06:55:22 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 94B1F2623C; Sat, 15 Apr 2017 06:55:22 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 44F6E2866A for ; Sat, 15 Apr 2017 06:55:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752091AbdDOGzF (ORCPT ); Sat, 15 Apr 2017 02:55:05 -0400 Received: from mailrelay111.isp.belgacom.be ([195.238.20.138]:48187 "EHLO mailrelay111.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752513AbdDOGzD (ORCPT ); Sat, 15 Apr 2017 02:55:03 -0400 X-Belgacom-Dynamic: yes IronPort-PHdr: =?us-ascii?q?9a23=3AK0MC6R1k6dUQYYkOsmDT+DRfVm0co7zxezQtwd8Z?= =?us-ascii?q?segWKvad9pjvdHbS+e9qxAeQG96Eu7QZ06L/iOPJZy8p2d65qncMcZhBBVcuqP?= =?us-ascii?q?49uEgeOvODElDxN/XwbiY3T4xoXV5h+GynYwAOQJ6tL3WbmHC57CYTFxPjLkI1?= =?us-ascii?q?Y72tQs+Bx/iwgsm094fefE1tgyChZrU6eBy1tQD5ssgQnJsnJKEszBfAvnpPfa?= =?us-ascii?q?JR32w+dnyJmBOpyM66/ZdluwpKtv4s7c9LUu2uca0yQ5RDDyUgPnxz7sC95kqL?= =?us-ascii?q?dheG+nZJCjZeqRFPGQWQqUiiBpo=3D?= X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2AoAgCjwvFY/xWMtFtdHQwGGAYMgkBqg?= =?us-ascii?q?WyObpEUAZU1gg+GHgQChABAGAEBAQEBAQEBAQEBaiiCMwQBHQEEgxgjKXEkE4o?= =?us-ascii?q?KEas/hBCHNIZSiRyGFQWdG5JYDZFGlAofOIEFQx0YhFoBC4JFPjWHC26BTwEBA?= =?us-ascii?q?Q?= X-IPAS-Result: =?us-ascii?q?A2AoAgCjwvFY/xWMtFtdHQwGGAYMgkBqgWyObpEUAZU1gg+?= =?us-ascii?q?GHgQChABAGAEBAQEBAQEBAQEBaiiCMwQBHQEEgxgjKXEkE4oKEas/hBCHNIZSi?= =?us-ascii?q?RyGFQWdG5JYDZFGlAofOIEFQx0YhFoBC4JFPjWHC26BTwEBAQ?= Received: from 21.140-180-91.adsl-dyn.isp.belgacom.be (HELO localhost.localdomain) ([91.180.140.21]) by relay.skynet.be with ESMTP; 15 Apr 2017 08:55:01 +0200 From: Fabian Frederick To: Andrew Morton Cc: Alexander Viro , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, fabf@skynet.be Subject: [PATCH 1/1 linux-next] fs/affs: import amigaffs.h Date: Sat, 15 Apr 2017 08:54:56 +0200 Message-Id: <20170415065456.13737-1-fabf@skynet.be> X-Mailer: git-send-email 2.9.3 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Have that file in global include/linux is not needed. Signed-off-by: Fabian Frederick --- fs/affs/affs.h | 2 +- {include/linux => fs/affs}/amigaffs.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {include/linux => fs/affs}/amigaffs.h (100%) diff --git a/fs/affs/affs.h b/fs/affs/affs.h index 2f8bab3..ba26a31 100644 --- a/fs/affs/affs.h +++ b/fs/affs/affs.h @@ -7,7 +7,7 @@ #include #include #include -#include +#include "amigaffs.h" #include #include diff --git a/include/linux/amigaffs.h b/fs/affs/amigaffs.h similarity index 100% rename from include/linux/amigaffs.h rename to fs/affs/amigaffs.h