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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C54F1C636D0 for ; Mon, 30 Jan 2023 14:21:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237727AbjA3OVP (ORCPT ); Mon, 30 Jan 2023 09:21:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33162 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237729AbjA3OVB (ORCPT ); Mon, 30 Jan 2023 09:21:01 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A83DA3FF36 for ; Mon, 30 Jan 2023 06:19:49 -0800 (PST) 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 dfw.source.kernel.org (Postfix) with ESMTPS id C574B6108F for ; Mon, 30 Jan 2023 14:19:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D1CF5C433D2; Mon, 30 Jan 2023 14:19:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675088356; bh=dIubFkVQexVc21w5zlUMYqAmUd82j7Z8ro85bO0BezY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=a/tvOjUpStm54oFAqrKBwNBEDNFvtRZD0VMae3SFloLnLyqXQm7zzU+Q4t3fR0XsQ cZ5LLGNuPlJCM4vEMSXTzlHV/jVeEkaNeobmzrNj23CK83QM6pmhFhNuFNQ5AWOyq6 8fynfRPkucv7+TFEk+tMasixyuwfgp4LxY/XGZ30= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Joe Perches , Linus Torvalds , Sasha Levin Subject: [PATCH 5.15 195/204] treewide: fix up files incorrectly marked executable Date: Mon, 30 Jan 2023 14:52:40 +0100 Message-Id: <20230130134325.157727550@linuxfoundation.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230130134316.327556078@linuxfoundation.org> References: <20230130134316.327556078@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Linus Torvalds [ Upstream commit 262b42e02d1e0b5ad1b33e9b9842e178c16231de ] I'm not exactly clear on what strange workflow causes people to do it, but clearly occasionally some files end up being committed as executable even though they clearly aren't. This is a reprise of commit 90fda63fa115 ("treewide: fix up files incorrectly marked executable"), just with a different set of files (but with the same trivial shell scripting). So apparently we need to re-do this every five years or so, and Joe needs to just keep reminding me to do so ;) Reported-by: Joe Perches Fixes: 523375c943e5 ("drm/vmwgfx: Port vmwgfx to arm64") Fixes: 5c439937775d ("ASoC: codecs: add support for ES8326") Signed-off-by: Linus Torvalds Signed-off-by: Sasha Levin --- drivers/gpu/drm/vmwgfx/vmwgfx_msg_arm64.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 drivers/gpu/drm/vmwgfx/vmwgfx_msg_arm64.h diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_msg_arm64.h b/drivers/gpu/drm/vmwgfx/vmwgfx_msg_arm64.h old mode 100755 new mode 100644 -- 2.39.0