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 X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 584BDC433E1 for ; Mon, 3 Aug 2020 04:27:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3703E206F6 for ; Mon, 3 Aug 2020 04:27:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726514AbgHCE1T (ORCPT ); Mon, 3 Aug 2020 00:27:19 -0400 Received: from mga05.intel.com ([192.55.52.43]:40204 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725908AbgHCE1T (ORCPT ); Mon, 3 Aug 2020 00:27:19 -0400 IronPort-SDR: aHGsiZ/ULu1wEspMpEz7mj1cFMa+ru56mYHn9MrvymKvTpymu5+7l1A16cogPvYwRZ/7Bcm9Vr r/Z6IhXqFNVA== X-IronPort-AV: E=McAfee;i="6000,8403,9701"; a="236908517" X-IronPort-AV: E=Sophos;i="5.75,428,1589266800"; d="scan'208";a="236908517" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Aug 2020 21:27:17 -0700 IronPort-SDR: p0RijZaIGfrt1XwdkmPInU0uVWjbl/u5KQ7v3K09JcXcc7vN5wvo39tyHGbFKE5hNSHXnfrvXT 4dfAagPqPt0A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,428,1589266800"; d="scan'208";a="323917090" Received: from adixit-mobl.amr.corp.intel.com (HELO adixit-arch.intel.com) ([10.254.24.62]) by fmsmga002.fm.intel.com with ESMTP; 02 Aug 2020 21:27:17 -0700 Date: Sun, 02 Aug 2020 21:26:49 -0700 Message-ID: <87wo2gjqwm.wl-ashutosh.dixit@intel.com> From: "Dixit, Ashutosh" To: Greg Kroah-Hartman Cc: , , , , , Subject: Re: [PATCH] vop: Add missing __iomem annotation in vop_dc_to_vdev() In-Reply-To: <20200803042401.GA570882@kroah.com> References: <20200802232812.16794-1-ashutosh.dixit@intel.com> <20200803042401.GA570882@kroah.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/26 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 02 Aug 2020 21:24:01 -0700, Greg Kroah-Hartman wrote: > > On Sun, Aug 02, 2020 at 04:28:12PM -0700, Ashutosh Dixit wrote: > > Fix the following sparse warnings in drivers/misc/mic/vop//vop_main.c: > > > > 551:58: warning: incorrect type in argument 1 (different address spaces) > > 551:58: expected void const volatile [noderef] __iomem *addr > > 551:58: got restricted __le64 * > > 560:49: warning: incorrect type in argument 1 (different address spaces) > > 560:49: expected struct mic_device_ctrl *dc > > 560:49: got struct mic_device_ctrl [noderef] __iomem *dc > > 579:49: warning: incorrect type in argument 1 (different address spaces) > > 579:49: expected struct mic_device_ctrl *dc > > 579:49: got struct mic_device_ctrl [noderef] __iomem *dc > > > > Cc: Michael S. Tsirkin > > Cc: Sudeep Dutt > > Cc: Arnd Bergmann > > Cc: Vincent Whitchurch > > Cc: stable > > Why is this a stable thing? It doesn't fix a real bug, and sparse > warnings are not needed for stable trees, unless this is the last sparse > warning there. It is the last sparse warning. Sorry I wasn't sure about stable so I thought might as well. Please ignore if it's not required. Thanks.