From patchwork Fri Aug 9 07:57:36 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans Verkuil X-Patchwork-Id: 818186 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 54D07C8D1; Fri, 9 Aug 2024 08:13:17 +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=1723191197; cv=none; b=T3x+wD4/VjlNuT/0OVeSsrBplyw90Kq25F2kG3yFmFd+IEUFlnlYqWHxAoTO7EQWAdq/gpaEb/oRYFSTo/U/DYX0mMhP0Iy6YGvRco4flbrmocdrQSKaJvFEATjsqwZyhnv/wd5ek8SoxibLaK7rBIo9PzjahjnFS3kztKWNPiA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1723191197; c=relaxed/simple; bh=+RvT5oYD0ds6G+9jSn1C+P+GmA0FxvcNKYUddrnNsbk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Pyt1qjYSFqUFGU9nZJlycM05hzEJKAZEOMXbhkKSnGONkie1WDsRX6Gq9SHT2jdbW9TgDGb2zApUqgFPtSsRJn5FKzkxMPC1stbZSeQzLLbeywr3ncf+xOsROEsbNggSAIDqxotmAFmFijGPSgymuXPGOEGhxk9uuQLj6aNDerk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 77429C32782; Fri, 9 Aug 2024 08:13:16 +0000 (UTC) From: Hans Verkuil To: linux-media@vger.kernel.org Cc: linux-input@vger.kernel.org, Hans Verkuil Subject: [PATCH 4/6] input: serio.h: add SERIO_EXTRON_DA_HD_PLUS Date: Fri, 9 Aug 2024 09:57:36 +0200 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-input@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Add a new serio ID for the Extron DA HD 4K Plus series of 4K HDMI Distribution Amplifiers. These devices support CEC over the serial port, so a new serio ID is needed to be able to associate the CEC driver. Signed-off-by: Hans Verkuil --- include/uapi/linux/serio.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/serio.h b/include/uapi/linux/serio.h index ed2a96f43ce4..5a2af0942c9f 100644 --- a/include/uapi/linux/serio.h +++ b/include/uapi/linux/serio.h @@ -83,5 +83,6 @@ #define SERIO_PULSE8_CEC 0x40 #define SERIO_RAINSHADOW_CEC 0x41 #define SERIO_FSIA6B 0x42 +#define SERIO_EXTRON_DA_HD_4K_PLUS 0x43 #endif /* _UAPI_SERIO_H */