From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 080CA37E2E6; Wed, 4 Feb 2026 06:21:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770186118; cv=none; b=YjyJ0tXuj9Ir/b+pMoDDgdskX/DslmO4/rzG4zOP46BZ5ukFx+el8HPeptO+uNAKyT1Tdk+2ilqRHV7JlGozaTWC1dWWAl7hFTRZycBRzsYyZYb1Nm2xPp2utWEd/mOFGyixoT9MoiBpr9jiWQcMugM/ZcOn9/uUgVqRiBFnARo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770186118; c=relaxed/simple; bh=bN7cTfgHxxw72Fq02SjdM8FAa9yt9kC9sbsueOnbwtw=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=P0oAtfJfajkHA8DrB4gKtQnHKAHbNNHsSMS/1QjN3Fy6UFiFBkC3FzLZ33UblUHG3GVdml9l/jBmF/IsDG1rgiDZZ3xVJ7hZtKDYOE4rql9rzN/gmgkwUtgGMLK05r3GMvds0PJyyl8hJrijcz9KTz/vdYeVgJLbEJlnEv5HLD8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=UnRclk1m; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="UnRclk1m" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 75B40C4CEF7; Wed, 4 Feb 2026 06:21:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1770186117; bh=bN7cTfgHxxw72Fq02SjdM8FAa9yt9kC9sbsueOnbwtw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=UnRclk1mYcEzmIsbycWUDHU6RIiBVVLORrSkYIAojBTgrZQQZcScTOvv4B+UNn7xC UgVZhAl6ZzQ4teCzVZAAyWvAnNNfRmHvtorwusK0nmTx2ng4DeFr1YnhghQzvKID7P LlRUxS5nOmH37J2pNV6FR83MzKktvJS9rY7eTP3ysl1fTbeR8sDqo1mKo/gm8UpVH+ NeMcgC3/r2rhr5w/iux0s+J99ibOAxMcXsYfAX95YOsGoBie1CQfGAGW6Up3aDQntO A7LddHD/Pa+YBrBeNKJs+JmvxMlk1GsW3qoz7mCj+Q2z/Ero/oDahJ//DZzUYvRr4B NUy3c+Kmshx7A== Date: Wed, 4 Feb 2026 06:21:56 +0000 From: Wei Liu To: Ethan Nelson-Moore Cc: linux-hyperv@vger.kernel.org, linux-pci@vger.kernel.org, "K. Y. Srinivasan" , Haiyang Zhang , Wei Liu , Dexuan Cui , Long Li , Lorenzo Pieralisi , Krzysztof =?utf-8?Q?Wilczy=C5=84ski?= , Manivannan Sadhasivam , Rob Herring , Bjorn Helgaas Subject: Re: [PATCH] pci: pci-hyperv-intf: remove unnecessary module_init/exit functions Message-ID: <20260204062156.GG79272@liuwe-devbox-debian-v2.local> References: <20260131020017.45712-1-enelsonmoore@gmail.com> Precedence: bulk X-Mailing-List: linux-hyperv@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260131020017.45712-1-enelsonmoore@gmail.com> On Fri, Jan 30, 2026 at 06:00:17PM -0800, Ethan Nelson-Moore wrote: > The pci-hyperv-intf driver has unnecessary empty module_init and > module_exit functions. Remove them. Note that if a module_init function > exists, a module_exit function must also exist; otherwise, the module > cannot be unloaded. > > Signed-off-by: Ethan Nelson-Moore Applied to hyperv-next. I modified the subject line to match our conventions. Thanks. Wei