From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7DA98C4332F for ; Wed, 6 Apr 2022 21:32:20 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 9C2ED83515; Wed, 6 Apr 2022 23:32:17 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="sV/8QAz5"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 57AA383D2A; Wed, 6 Apr 2022 23:32:15 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 30AE680FEC for ; Wed, 6 Apr 2022 23:32:09 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B9181B82473; Wed, 6 Apr 2022 21:32:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3E1A1C385A3; Wed, 6 Apr 2022 21:32:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649280727; bh=XuFpfrZ0QcRqhkhydrbL99lLCpei1IZwdUChV86c4wE=; h=From:To:Cc:Subject:Date:From; b=sV/8QAz5eqDzZ4WnahqDpUuLGLx3mt1ZVnVQCc3CAfnv2OWrqMS2rurySEnBr1BGT nFR+hMsoJQRHYGmmt1/ozJtLOTXr79IyEEQPBv126cczVv2JDlnCp/h3B+ht5mo5sD E4wkiu2WIRYcIivTYdIArdWDZlRCQxSTGJ/8GyzIxwljUlOr4DmR3brcw53VFRv194 mBCqdqdRCOfZTipgFuJUyYO1tSmGkF5V5+Ye5EmRMhabdw5E2BgtxhDY1LuiZ6Fanm jWqjY/3jHCqrBpHnPCIBuAkapyFeX10S1Sr5jFkRe81s/H9Xsfsck68A3kobyksW7W 408TFGvLPDVNw== Received: by pali.im (Postfix) id 5D821775; Wed, 6 Apr 2022 23:32:04 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Joao Marcos Costa , Thomas Petazzoni , Miquel Raynal Cc: u-boot@lists.denx.de Subject: [PATCH] squashfs: Fix compilation on big endian systems Date: Wed, 6 Apr 2022 23:31:53 +0200 Message-Id: <20220406213153.30437-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Signed-off-by: Pali Rohár --- fs/squashfs/sqfs.c | 3 +-- fs/squashfs/sqfs_dir.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/fs/squashfs/sqfs.c b/fs/squashfs/sqfs.c index 5d9c52af80ba..41cb811c1b32 100644 --- a/fs/squashfs/sqfs.c +++ b/fs/squashfs/sqfs.c @@ -11,8 +11,7 @@ #include #include #include -#include -#include +#include #include #include #include diff --git a/fs/squashfs/sqfs_dir.c b/fs/squashfs/sqfs_dir.c index a265b98fe685..ed83c90682ff 100644 --- a/fs/squashfs/sqfs_dir.c +++ b/fs/squashfs/sqfs_dir.c @@ -7,8 +7,7 @@ #include #include -#include -#include +#include #include #include #include -- 2.20.1