From nobody Sat Jul 25 03:45:59 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C7F9B11CBA for ; Sun, 19 Jul 2026 13:20:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784467208; cv=none; b=i1GytKbuoNgjIgPvPOFi5TpitfZ/Emy4ZPdUv2IfJx9cx9Vx7CDaresjHj/yzQ5zACOyn0Hsq0/+tcpMBEKPQv9UkQ0CYVPfp/h3a5Fn1LKherHuhbgr0xzChGsj1gYa8Fz0+zqQBK5xscx+aJ9f+vNBjZqxPj7/we38QeIXBvk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784467208; c=relaxed/simple; bh=x5fGYeWQIFczXpVMJe3BXwo6y1IrMNQ3YNFqR3NRZoU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Z5eJhYYIGGGgyS2gEuZ92brSEpOdizE9oWkjc02fhwZ1WKt5kXOw3mRn+yIJQXHFOWfPh0K1rnLyvgsH5r9NhsJ/jxcLAJNaaUi7C+rXUHA4FqPzAdq6GtLPO3XM7xB11NQF/jkA8hQNQ42TZoonKvBZ/L2rWMa4PLeRbzQ/1og= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ROZvXyKW; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ROZvXyKW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D95801F000E9; Sun, 19 Jul 2026 13:20:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1784467207; bh=4d8u3R2TInNCc0qdjp4t52OMSIZuLE3zCqZ47gqpL3U=; h=From:To:Cc:Subject:Date; b=ROZvXyKWuZ7IgTaTpbGJh7sB6uUBJWSpV5KPwxD2Lzok4gsWi9hIJxoqvUG8Cm4r9 u1ru4Js2nsA+1J+jkOyHk9iqvb0xJ0OtZ/VuNzYwqPI0JsbSydDWveEaFJQkRZWyVV UsuH4G5NCFF+eDWenVA1xfqD6e15JIfm/g/QxYwixLk7e7a0+SKArVkxnjTh9UJzgE DAtFrUHrn+AzbyGUy5kCbrqPKngRg7iRuf5rAvqEalokf6zwsYi/PGIzjpInhqEi5y He25IWxocadSLRbcjYt5Jp3+ldTeEluaN3BsS60vyFPS672x93pQGour/3quQdi8E2 28Shsf+P/y3mw== From: Greg Ungerer To: linux-m68k@lists.linux-m68k.org Cc: linux-kernel@vger.kernel.org, arnd@arndb.de, Greg Ungerer , kernel test robot Subject: [PATCH] m68k: coldfire: fix breakage of missed IO access update Date: Sun, 19 Jul 2026 23:19:26 +1000 Message-ID: <20260719131926.1150032-1-gerg@kernel.org> X-Mailer: git-send-email 2.54.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Greg Ungerer Fix the last remaining breakage caused by missing a SoC IO access update. Commit e1f3a00670d1 ("m68k: coldfire: use ColdFire specifc IO access in SoC code") missed this read16() call which should be mcf_read16(). Fixes: e1f3a00670d1 ("m68k: coldfire: use ColdFire specifc IO access in SoC= code") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202607180731.U4tiwFcQ-lkp@int= el.com/ Signed-off-by: Greg Ungerer --- arch/m68k/coldfire/m528x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/m68k/coldfire/m528x.c b/arch/m68k/coldfire/m528x.c index 3383b1ba106a..f9874bba9e45 100644 --- a/arch/m68k/coldfire/m528x.c +++ b/arch/m68k/coldfire/m528x.c @@ -110,7 +110,7 @@ void wildfiremod_halt(void) printk(KERN_INFO "WildFireMod hibernating...\n"); =20 /* Set portE.5 to Digital IO */ - mcf_write16(read16(MCFGPIO_PEPAR) & ~(1 << (5 * 2)), MCFGPIO_PEPAR); + mcf_write16(mcf_read16(MCFGPIO_PEPAR) & ~(1 << (5 * 2)), MCFGPIO_PEPAR); =20 /* Make portE.5 an output */ mcf_write8(mcf_read8(MCFGPIO_PDDR_E) | (1 << 5), MCFGPIO_PDDR_E); --=20 2.54.0