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 85068C7EE2F for ; Thu, 2 Mar 2023 19:57:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229764AbjCBT5Z (ORCPT ); Thu, 2 Mar 2023 14:57:25 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54674 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229541AbjCBT5C (ORCPT ); Thu, 2 Mar 2023 14:57:02 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B09954743A; Thu, 2 Mar 2023 11:57:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=r+p3XE54gIXRBSc1Xwon4gGUeURnRrQNa2oyvHJuCaM=; b=nKH5vW/pT39uCrfcSgbjJyMUYC +lKRMpvN+JQtoMqtHMrK93E8gRTgr/W6uYdQUac9LDsG+y/xZtXyilGDKEmLWYMUNhkxAPJ/q/Bc5 TtnjX1CPeM8aR7jMPG3B7QEstFq+eV0giComaBIksQ/Thk1SXqWnrBhD13s4EzOQGBHCW36iVMT2A BSwZSeBSsYcmDQcHzL0qsabqSAPmg8TFrhQK9O0u4gfL62dMVzLzcplUjtoFYflZCdAAzbZ5dQYHB /Hn05CFTn8Y/2bO/8xb9ZmdhXkaNPD28KO4uL3R5p2T+U5zLgrC79uFMHLdZEmE9q/PAHz3TNTTnG uLRnBoFQ==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1pXp2y-003Cjr-MO; Thu, 02 Mar 2023 19:57:00 +0000 Date: Thu, 2 Mar 2023 11:57:00 -0800 From: Luis Chamberlain To: Baoquan He Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, linux-mm@kvack.org, arnd@arndb.de, geert@linux-m68k.org, hch@infradead.org Subject: Re: [PATCH v2 0/2] arch/*/io.h: remove ioremap_uc in some architectures Message-ID: References: <20230301102208.148490-1-bhe@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230301102208.148490-1-bhe@redhat.com> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 01, 2023 at 06:22:06PM +0800, Baoquan He wrote: > This patchset tries to remove ioremap_uc() in the current architectures > except of x86 and ia64. They will use the default ioremap_uc definition > in which returns NULL. > > If any arch sees a breakage caused by the default ioremap_uc(), it can > provide a sepcific one for its own usage. Feel free to add: Reviewed-by: Luis Chamberlain Luis