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: 13878196 X-Patchwork-Delegate: jikos@jikos.cz 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" From patchwork Mon Nov 18 07:29:04 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 13878197 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 616E9185B62 for ; Mon, 18 Nov 2024 07:29:53 +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=1731914995; cv=none; b=Ly7shuQw1/3vQQtPzmJOH2aBh3PCd9raBZ4/YoJ/fS3NLkCkvuh5IOQZrHPCnzO0G7ADnqQRLyJdb4VGiblyfVr+u+Vd4rJ05WzG3GuNj6k+WAuw+iy7Uim9NBfOcqlw1X72/U2OB68JYijdE2T6oq67SJ9hfiAP0TRUkceuOfM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731914995; c=relaxed/simple; bh=PQQMBjS8QmOiIG5o75lciAdQR6IQRb8LTR4vBfyIZeY=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=c7mBJgVpbqo/HRONnD8CCFvMEkfJwWFMuQ1gescx+kWjbhuZ090XDEeWztmDqK4MPppP218O64Vkfsc+iO2iWBfANww8f3KpDx/LEjkMkE69PBcr8LB758jUuOCCPMosrzQQI2B+jL6q3IPLzhk8+PSier0ZuzHBhQvTAlcPHD8= 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=hKQL4X0I; 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="hKQL4X0I" 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=/B5+b9h1RKJWs4xVmneZ+OTMCDtH4czfzo/ktYrdiWU=; b=hKQL4X 0IzAcua757FBInORoUyMQyLWQmPIJJJzEH//PESQjSn58Or6diUAsuoVIgbdJmLM r+GANBG/7cy5hxR8rxdis5qYTjNtGDQYbkpospviEzAzzRMeAF8eP0xhFWfDoZe5 2ZVnMEGYpHQxTIKtNpR/BMWDls49tR5L8fcWJ/uREUVni4zI9JUoAIdbmEUFrZpG qoTmCbo2K1t4aejDBP/jxKeapCSOwLSRBrMvktxzd63qxQO5BmZtkgBNoILlHs1Z mMZLyLA9ekSuhIOEcpTbwT4NPlSvC8j6MdYAHZ1Kwy282EWH2wjb0IUU4FWUffRG +jsgMiktrkrh9BAA== Received: (qmail 112404 invoked from network); 18 Nov 2024 08:29:38 +0100 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 18 Nov 2024 08:29:38 +0100 X-UD-Smtp-Session: l3s3148p1@P3gK4Son5NUujntT From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Wolfram Sang , Dmitry Torokhov , linux-input@vger.kernel.org Subject: [PATCH 05/15] Input: spear-keyboard - don't include 'pm_wakeup.h' directly Date: Mon, 18 Nov 2024 08:29:04 +0100 Message-Id: <20241118072917.3853-6-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 --- drivers/input/keyboard/spear-keyboard.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/input/keyboard/spear-keyboard.c b/drivers/input/keyboard/spear-keyboard.c index 1df4feb8ba01..18417ba19fdb 100644 --- a/drivers/input/keyboard/spear-keyboard.c +++ b/drivers/input/keyboard/spear-keyboard.c @@ -20,7 +20,6 @@ #include #include #include -#include #include #include #include From patchwork Mon Nov 18 07:29:05 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 13878198 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 68F9818C34B for ; Mon, 18 Nov 2024 07:29:54 +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=1731914996; cv=none; b=D4xldO7qgM822kutdKRcTL45cRZ8nLTeOHbjSRJU1BOnpryg/CzvL75DX+/rXUsL4vOXDptbkJmqsodwyhPWDwNJTPv2VMIh0cStK1IxEVqg32m7FoX8gAHIGFqoiYP4EmP4O/bIWQ2MbFFDGGQ4EDfmX2bbFcxe+zz39bwzSEg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731914996; c=relaxed/simple; bh=kfG0y9K+O0idmwwz3aV0NXnyQm6c+F/DJ73QLT35W9w=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=r5dTILWF5/aI1bMqdwqS4cTY2d1YeojAWcqpo5/HmGKbM0n6dBw3OBSzVDDahKDLmrpbPC9kiloRnaoSeY+gasZXiF76MRrB+Jv7431zdyA7kMZXXBkbeEGJ5FbF+czu0aC5geV1ESSFee4utOZ8hhxEXUxgDAb/ImazHsu8ZDg= 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=WOVk2pdU; 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="WOVk2pdU" 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=aAd/+tR/6amb3iC4y9aIm0hPICd8LWcv5HI4xQzRV/c=; b=WOVk2p dUoujkGOyrKFrqsvR767kNsLYhPt+wyZFiZbpLM9wjTE6mQGSaWnJo9tUvK8W8xj 5BW/0k+Muhwq21b/HjtmDzce+eyKIdLGm6LTdGu0/vAX27RV9e6vpg0JJs85EbJM qcoFSkfXzTMXlTcvCRLEvqMfGj9PB/M8S5265ESzDZG+av0P0Hhgv71gew7yE9Pf Oucie6QaZ5XnM/7DpUa1qIqq3rv0WiQ6SsIUHCT4kkY8OHcnD32C/vSmfoO3xk8w lqyryIpg2WwKcZeQZ6pKUh1g7pEw99qaK7E+DzEsXFGu9ZWb0mKx1fMeLPcv1O2q 9uxbre/f6DNFc62Q== Received: (qmail 112434 invoked from network); 18 Nov 2024 08:29:38 +0100 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 18 Nov 2024 08:29:38 +0100 X-UD-Smtp-Session: l3s3148p1@0+IT4Son8tUujntT From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Wolfram Sang , Hans de Goede , Dmitry Torokhov , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , linux-input@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev Subject: [PATCH 06/15] Input: sun4i-lradc-keys - don't include 'pm_wakeup.h' directly Date: Mon, 18 Nov 2024 08:29:05 +0100 Message-Id: <20241118072917.3853-7-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 --- drivers/input/keyboard/sun4i-lradc-keys.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/input/keyboard/sun4i-lradc-keys.c b/drivers/input/keyboard/sun4i-lradc-keys.c index f304cab0ebdb..9a4fdef2650e 100644 --- a/drivers/input/keyboard/sun4i-lradc-keys.c +++ b/drivers/input/keyboard/sun4i-lradc-keys.c @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include