From mboxrd@z Thu Jan 1 00:00:00 1970 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 99C013AFB0B for ; Sun, 19 Jul 2026 18:00: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=1784484011; cv=none; b=td4AIlY7cI8Voh1Sk/7MgrVfMKfBtbaU+FX5TGtH/pff35HyDOEdmamHFMtR14N30XKWXW50j24d52big5sAE21bH83aI3NaFBGnUpxk8dkzfkrUatfEBgTFSYXCjNWqO+RkAWSlFFN9a1X1ndyzDQFY+BLl76he+IRuATvWJtI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784484011; c=relaxed/simple; bh=w0GHlX/s37AZfhQF3lcM69CInRgJJf13vYhRyCs6oqA=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References: MIME-Version:Content-Type; b=Dgh/Q1sYImvcDbDOSAWlCE9szEp9yYy5PABHXqcYSIdCWxgF+9qx+b71etWzgUJhp563jomcZZMgvIYKstPD137Xnz5FktStlinUgXCQnSY/wQk2JWnJWuzpWZfSFLpPmNTr7qKKDFP/DUa2UnvCVNSaY/z9iW4FcwcV1WAkeb0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=SR3/PY9+; 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="SR3/PY9+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 282A61F0155F; Sun, 19 Jul 2026 18:00:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1784484005; bh=f1JbyR4ID8Wt/ntl62PGU1b/cjxrpuw/Kxg2nVCiOUw=; h=Date:From:To:cc:Subject:In-Reply-To:References; b=SR3/PY9+86ZezDCx8oqGDETXFoegCBTIAFyoV6/mvV2+PVThbmvqYxngPV5uTknj+ fWgTzJezjB0CAU4fcj9K+s1Ic64meHW4Ycyl7YcmcbZ80cAmS7CwshfUzYznS6eyfv +ouHdVCrattuYpFBOzn/rto9fYLN1Cm4Un+RNI9899xOzLZAUzXAVmtFIAToNoD4r3 g1TeKxZRct+ClVblYBm+UEvG9TOhSWUbtqTFiT5YVHSMbJx0q5nNzaYR+5Vn0BwB0o Ve0RmoGDd0N5lF7X67Ch2qnzirAlcqj+M9eqUEDADE4DfhGwudxe+Gv9mJQSgvCPAx HveR08wfXlfGw== Date: Sun, 19 Jul 2026 11:59:58 -0600 (MDT) From: Paul Walmsley To: Nam Cao cc: Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti , linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, kernel test robot Subject: Re: [PATCH] riscv: time: Add missing __iomem in get_cycles() and get_cycles_hi() In-Reply-To: <20260716053319.2178937-1-namcao@linutronix.de> Message-ID: References: <20260716053319.2178937-1-namcao@linutronix.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII On Thu, 16 Jul 2026, Nam Cao wrote: > __iomem is missing while calling readl_relaxed() in get_cycles() and > get_cycles_hi() and sparse complains. > > Add __iomem to silence the sparse warnings. > > Reported-by: kernel test robot > Closes: https://lore.kernel.org/oe-kbuild-all/202607160619.14G8GHp5-lkp@intel.com/ > Signed-off-by: Nam Cao Thanks, queued for v7.2-rc. \ - Paul