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 CBA5BECAAA1 for ; Tue, 6 Sep 2022 14:30:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239732AbiIFOa3 (ORCPT ); Tue, 6 Sep 2022 10:30:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46922 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242423AbiIFO3O (ORCPT ); Tue, 6 Sep 2022 10:29:14 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4803F8E4FD for ; Tue, 6 Sep 2022 06:55:34 -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 ams.source.kernel.org (Postfix) with ESMTPS id ACA85B818BF for ; Tue, 6 Sep 2022 13:54:10 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F4FFC433D6; Tue, 6 Sep 2022 13:54:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1662472449; bh=du3sh9blzaxecIl+k6c24M5BhK015GBGQAWwh/6ZhRg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=cSKtuXzeXAw4pwE+VQ7BmdLG16OKCcnlMrEHiU888tDe1uTLeWtgZwxPKreLgTjul 4u6Q75u2ssjMytQLESXv5zAc0zBHinP6hjiaRgJQ4tQ5Q66G5u2y5sNIKVrPUx+BhE VulqqhYQZJGi3hxIj0HTyeLqotcMbvF4Ld9/xmFI= Date: Tue, 6 Sep 2022 15:43:34 +0200 From: Greg KH To: Kumaravel Thiagarajan Cc: linux-kernel@vger.kernel.org, kbuild-all@lists.01.org, lkp@intel.com Subject: Re: [PATCH v3 char-misc-next] misc: microchip: pci1xxxx: fix dependency issues in building the pci1xxxx's aux bus driver. Message-ID: References: <20220906124951.696776-1-kumaravel.thiagarajan@microchip.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220906124951.696776-1-kumaravel.thiagarajan@microchip.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 06, 2022 at 06:19:51PM +0530, Kumaravel Thiagarajan wrote: > build errors and warnings listed below and reported by kernel > test robot on the char-misc-next branch are > fixed in this add-on patch. > > errors: > ERROR: modpost: "auxiliary_device_init" [drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.ko] undefined! > ERROR: modpost: "__auxiliary_device_add" [drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.ko] undefined! > ERROR: modpost: "auxiliary_driver_unregister" [drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.ko] undefined! > ERROR: modpost: "__auxiliary_driver_register" [drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.ko] undefined! > ia64-linux-ld: drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.o: in function `gp_aux_bus_probe.part.0': > mchp_pci1xxxx_gp.c:(.text+0x342): undefined reference to `auxiliary_device_init' > ia64-linux-ld: mchp_pci1xxxx_gp.c:(.text+0x392): undefined reference to `__auxiliary_device_add' > ia64-linux-ld: mchp_pci1xxxx_gp.c:(.text+0x5c2): undefined reference to `auxiliary_device_init' > ia64-linux-ld: mchp_pci1xxxx_gp.c:(.text+0x612): undefined reference to `__auxiliary_device_add' > ia64-linux-ld: drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.o: in function `pci1xxxx_gpio_driver_init': > mchp_pci1xxxx_gpio.c:(.init.text+0x42): undefined reference to `__auxiliary_driver_register' > > warnings: > unmet direct dependencies detected for GPIOLIB_IRQCHIP when selected by GP_PCI1XXXX > > Fixes: 393fc2f5948f ("misc: microchip: pci1xxxx: load auxiliary bus driver for the PIO function in the multi-function endpoint of pci1xxxx device.") > Reported-by: kernel test robot > Signed-off-by: Kumaravel Thiagarajan > --- > Changes in v3: > - Unwrap the error messages & warnings to display in single line Thanks for the quick fixes, now queued up! greg k-h