From patchwork Mon Nov 18 07:29:02 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 844187 Received: from mail.zeus03.de (zeus03.de [194.117.254.33]) (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 8EB27170A11 for ; Mon, 18 Nov 2024 07:29:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=194.117.254.33 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731914994; cv=none; b=O/0OCvKy6nOr+Ub3lW467ax+W14UTRsZXjQvnoXSaTdOwbzTKown88vGkt1l3m4yaWnDZUqMXQG02NhYvvCIeFpMG/3/yL5mSqTeQPrwqr/LiI5fhgH6yqAHRccJ8JM8+8Y8EIOB4Crurg2iojIrlISaURb/sEXoZe4p/AP00oU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731914994; c=relaxed/simple; bh=j51QES524V6Lvo4VxS8TZ7Xq0q7gurYLsawzeKbYgJ8=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=WO7BXmNwO8CxefreOsThB8VmaBFUdRV0RmWFIsjFvg4kCRhsPxBDOY49K6/PV9NUf6Ihpa7SHnFGlnmoC35vovlTI/HWLSICvqCQAzVH4IwAEG8UMyiJY3sIOaNvtH/LUvTyhQnGf7htxXY7Ghjzin1fSLK6660FRRKfQ5QXUTg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com; spf=pass smtp.mailfrom=sang-engineering.com; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b=hrsaAmB0; arc=none smtp.client-ip=194.117.254.33 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b="hrsaAmB0" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= sang-engineering.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; s=k1; bh=7MvBvuTrpMs5f+v0wMZNFkx2vQfhzDzE30IHrhAS8O8=; b=hrsaAm B066nWAb48rZMSp6L06CZ+GYRaoy/OYs0rncSMq+V/c+quM8IYaIU3sR2Vhk/rTT OnCKBb3LkEiI3w9dt8xOvXaJ8QKoQyVYKH3ngreGCHDFmzpUnDc0g+1Ao5LLQDrp hk2KTj/n4hrIQ+7zbC2XjM4QF1AIiNe7fXuC1JFHcRcIFQbLegS0SDZ9WHUKY4Z2 NxIlY/NR3tneY9OSaWKR7PjCCsmenapZPEf1AJgsE4EMNOIQ9HA/Xg/ZlmJzYZVB OXJGfwI3fWhTW3thhgNvrlad+5W/Ru3SXfR6yVSdNJB217hzdc4t8hvXkuwZH7T9 DdocJ8XFq2tV/mlQ== Received: (qmail 112362 invoked from network); 18 Nov 2024 08:29:36 +0100 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 18 Nov 2024 08:29:36 +0100 X-UD-Smtp-Session: l3s3148p1@gX/34ConyNUujntT From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Wolfram Sang , Jiri Kosina , Benjamin Tissoires , linux-input@vger.kernel.org Subject: [PATCH 03/15] HID: google: don't include 'pm_wakeup.h' directly Date: Mon, 18 Nov 2024 08:29:02 +0100 Message-Id: <20241118072917.3853-4-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> References: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> Precedence: bulk X-Mailing-List: linux-input@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 The header clearly states that it does not want to be included directly, only via 'device.h'. 'platform_device.h' works equally well. Remove the direct inclusion. Signed-off-by: Wolfram Sang Acked-by: Jiri Kosina --- drivers/hid/hid-google-hammer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/hid/hid-google-hammer.c b/drivers/hid/hid-google-hammer.c index 22683ec819aa..1be4366f740f 100644 --- a/drivers/hid/hid-google-hammer.c +++ b/drivers/hid/hid-google-hammer.c @@ -22,7 +22,6 @@ #include #include #include -#include #include #include "hid-ids.h"