From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) (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 362326135 for ; Sun, 5 Nov 2023 07:30:28 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="UaVtd0bP" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1699169428; x=1730705428; h=date:from:to:cc:subject:message-id:mime-version; bh=qwBgqe25CLImrb0YEJGrafg6TBFTklaA3nukUOZl6BQ=; b=UaVtd0bPVSCk6GxKEpn/2RMVTN7bQhl/PxWJZlti8PjoUy+FC+Whl27i fCEHgleV2sw8EDRNrFH6TsVC0kYPIJk/UNlb6fcMO64hnA4K4gsCMktrx 0LsylIsl5mjc5P7NYBuKX6eQMelrgXNgvXA7KsncXfpezStoUwBy97tJt I+lE2D9PMLRYCS8appJP8kb3MAfFOfQeb2FAumkpwCuNRF43W9knEj/Bb 5CRdxJhb9ie5oVIPkWflxBL9YyHArT7U2OE2DSwhhr1nJs8vxLftz4Bul 1GeSH3v/BghOn2NTV5WhjdsN4GfapwUukyTESiwML2rI5naikFGHaarkf g==; X-IronPort-AV: E=McAfee;i="6600,9927,10884"; a="374162759" X-IronPort-AV: E=Sophos;i="6.03,278,1694761200"; d="scan'208";a="374162759" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Nov 2023 00:30:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10884"; a="1009232419" X-IronPort-AV: E=Sophos;i="6.03,278,1694761200"; d="scan'208";a="1009232419" Received: from lkp-server01.sh.intel.com (HELO 17d9e85e5079) ([10.239.97.150]) by fmsmga006.fm.intel.com with ESMTP; 05 Nov 2023 00:30:23 -0700 Received: from kbuild by 17d9e85e5079 with local (Exim 4.96) (envelope-from ) id 1qzXaP-00059I-0o; Sun, 05 Nov 2023 07:30:21 +0000 Date: Sun, 5 Nov 2023 15:29:21 +0800 From: kernel test robot To: Tanmay Shah Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org, Mathieu Poirier , Ben Levinsky Subject: drivers/remoteproc/xlnx_r5_remoteproc.c:209:20: sparse: sparse: cast removes address space '__iomem' of expression Message-ID: <202311051552.fmM6xtjE-lkp@intel.com> Precedence: bulk X-Mailing-List: oe-kbuild-all@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: aea6bf908d730b01bd264a8821159db9463c111c commit: 6b291e8020a8bd90e94ee13d61f251040425c90d drivers: remoteproc: Add Xilinx r5 remoteproc driver date: 12 months ago config: arm64-randconfig-r122-20231102 (https://download.01.org/0day-ci/archive/20231105/202311051552.fmM6xtjE-lkp@intel.com/config) compiler: aarch64-linux-gcc (GCC) 13.2.0 reproduce: (https://download.01.org/0day-ci/archive/20231105/202311051552.fmM6xtjE-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot | Closes: https://lore.kernel.org/oe-kbuild-all/202311051552.fmM6xtjE-lkp@intel.com/ sparse warnings: (new ones prefixed by >>) >> drivers/remoteproc/xlnx_r5_remoteproc.c:209:20: sparse: sparse: cast removes address space '__iomem' of expression drivers/remoteproc/xlnx_r5_remoteproc.c:315:20: sparse: sparse: cast removes address space '__iomem' of expression vim +/__iomem +209 drivers/remoteproc/xlnx_r5_remoteproc.c 190 191 /* 192 * zynqmp_r5_mem_region_map() 193 * @rproc: single R5 core's corresponding rproc instance 194 * @mem: mem descriptor to map reserved memory-regions 195 * 196 * Callback to map va for memory-region's carveout. 197 * 198 * return 0 on success, otherwise non-zero value on failure 199 */ 200 static int zynqmp_r5_mem_region_map(struct rproc *rproc, 201 struct rproc_mem_entry *mem) 202 { 203 void __iomem *va; 204 205 va = ioremap_wc(mem->dma, mem->len); 206 if (IS_ERR_OR_NULL(va)) 207 return -ENOMEM; 208 > 209 mem->va = (void *)va; 210 211 return 0; 212 } 213 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki