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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3338DC433FE for ; Sun, 23 Oct 2022 12:33:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230107AbiJWMdu (ORCPT ); Sun, 23 Oct 2022 08:33:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56934 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229956AbiJWMds (ORCPT ); Sun, 23 Oct 2022 08:33:48 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6F4FF6DFBC for ; Sun, 23 Oct 2022 05:33:47 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 821CECE090C for ; Sun, 23 Oct 2022 12:33:45 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7648FC433C1; Sun, 23 Oct 2022 12:33:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1666528423; bh=QWW7kCYzn3NOSSHYoZswrahpAfEd86j5MSp0yxPTDGQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=y3pA9JphVIofEHhPAiIWWLmoUA2kAkIlV47dCfh84+W7HChQ6bj/vuK8czSomh9GG tfoOvdRDbmYFNi+W5+sbKf1hL5sRSEgYYdSHALygCoWnvvHn/H5vVrUaSMVk6aZsCw 7giKse+6xliJ9zWyov2XPq1gMEEzzi2lXM1KzlnA= Date: Sun, 23 Oct 2022 14:33:40 +0200 From: Greg Kroah-Hartman To: kernel test robot , Andy Shevchenko Cc: linux-kernel@vger.kernel.org Subject: Re: [driver-core:driver-core-testing] BUILD SUCCESS 59789f3418dd3c0a187490d49e900a59a5c8d732 Message-ID: References: <635484ed.ADi+2sBza+UlAhjj%lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <635484ed.ADi+2sBza+UlAhjj%lkp@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Oct 23, 2022 at 08:03:57AM +0800, kernel test robot wrote: > tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git driver-core-testing > branch HEAD: 59789f3418dd3c0a187490d49e900a59a5c8d732 device property: Constify parameter in device_dma_supported() and device_get_dma_attr() > > Unverified Warning (likely false positive, please contact us if interested): > > drivers/hwmon/iio_hwmon.c:155 iio_hwmon_probe() warn: could not determine type of argument 4 Andy, this is due to your changes, here's the offending code: sname = devm_kasprintf(dev, GFP_KERNEL, "%pfwP", dev_fwnode(dev)); Now that dev_fwnode() is an inline function, the compiler is confused as to what function to select? Maybe, I don't know, it seems odd, can you look into it? thanks, greg k-h