From nobody Sat Oct 11 10:25:57 2025 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 7A587262FD8; Wed, 11 Jun 2025 10:05:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=13.77.154.182 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749636350; cv=none; b=e78I1WxQTI3LxZUc+uRZ7bw8FKK1LQidlmWfiQihDczoQWqHH76iw0pinY8gR56Zq/tRiEPuEReVWQgY6nJJ71iFpcZT7VxlNm5b9imYHFVlP806e1IYpmjZvjg9Hq54zrrSAJC57VxDSG/Jy8YoTzZKKCRr45PDSzgscLxfX0w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749636350; c=relaxed/simple; bh=pGHUZ1n0HBaCxVNIYFnzW0xPci7Q7jOJnN75l5q16Vg=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=tJYVv0KJNsMGwsTlVTFlW++hNLKY5jzQAoOCZwO8yB590/CH9lyKDgC3GbWb24S/X1k9fwkSpIkdm1Py9jfI9OXla/yA63OIDPcvM6mzYGgtMwYE0DizPgRp0t8SYe+5eotbl62/CYacVT2MZmmQOllVbzmmRowe26En7VPGzXo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com; spf=pass smtp.mailfrom=linux.microsoft.com; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b=gnphaAdm; arc=none smtp.client-ip=13.77.154.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b="gnphaAdm" Received: from DESKTOP-RSFL4TU.corp.microsoft.com (unknown [167.220.238.139]) by linux.microsoft.com (Postfix) with ESMTPSA id 278172115192; Wed, 11 Jun 2025 03:05:39 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 278172115192 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1749636349; bh=xLsz86gnpqCtncCunTpTzLuVw47I0LwGtSW/SUX+e4Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gnphaAdmveyeXneMXGgE4Cvo0T3LHyElB7SlL+MljUl5NRhfqYLgTY5rdRFYYkTyR nUm0v51rFeezZ5jWhcKjf6iMFDW9jOdF98mbg+Sa9s5U87BRTnYJJhoF7SZq2uHnbk rLfGFkqbJweNlZeeujSmFBHBSmD+LVHftd25p7Dg= From: Naman Jain To: "K . Y . Srinivasan" , Haiyang Zhang , Wei Liu , Dexuan Cui , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H . Peter Anvin" , Vitaly Kuznetsov , Sean Christopherson , Paolo Bonzini , Daniel Lezcano , Andrew Lunn , "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Lorenzo Pieralisi , =?UTF-8?q?Krzysztof=20Wilczy=C5=84ski?= , Manivannan Sadhasivam , Rob Herring , Bjorn Helgaas , Konstantin Taranov , Leon Romanovsky , Long Li , Shiraz Saleem , Shradha Gupta , Maxim Levitsky , Peter Zijlstra , Erni Sri Satya Vennela , Souradeep Chakrabarti Cc: linux-hyperv@vger.kernel.org, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, netdev@vger.kernel.org, linux-pci@vger.kernel.org Subject: [PATCH 4/6] clocksource: hyper-v: Fix warnings for missing export.h header inclusion Date: Wed, 11 Jun 2025 15:34:57 +0530 Message-Id: <20250611100459.92900-5-namjain@linux.microsoft.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250611100459.92900-1-namjain@linux.microsoft.com> References: <20250611100459.92900-1-namjain@linux.microsoft.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Fix below warning in Hyper-V clocksource driver that comes when kernel is compiled with W=3D1 option. Include export.h in driver files to fix it. * warning: EXPORT_SYMBOL() is used, but #include is missing Signed-off-by: Naman Jain Acked-by: Daniel Lezcano --- drivers/clocksource/hyperv_timer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clocksource/hyperv_timer.c b/drivers/clocksource/hyper= v_timer.c index 09549451dd51..2edc13ca184e 100644 --- a/drivers/clocksource/hyperv_timer.c +++ b/drivers/clocksource/hyperv_timer.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include --=20 2.34.1