summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2025-09-20 11:51:48 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-10-02 13:42:47 +0200
commit18f9e77de527200df5af7c640ef991ed2ec90589 (patch)
tree5501343572d7277a746ffce497b22243ec05c597 /drivers
parentca3e48e96816cac48b4b66a4b828241b0ba86b92 (diff)
downloadlinux-18f9e77de527200df5af7c640ef991ed2ec90589.tar.gz
linux-18f9e77de527200df5af7c640ef991ed2ec90589.tar.bz2
linux-18f9e77de527200df5af7c640ef991ed2ec90589.zip
firewire: core: fix overlooked update of subsystem ABI version
[ Upstream commit 853a57ba263adfecf4430b936d6862bc475b4bb5 ] In kernel v6.5, several functions were added to the cdev layer. This required updating the default version of subsystem ABI up to 6, but this requirement was overlooked. This commit updates the version accordingly. Fixes: 6add87e9764d ("firewire: cdev: add new version of ABI to notify time stamp at request/response subaction of transaction#") Link: https://lore.kernel.org/r/20250920025148.163402-1-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/firewire/core-cdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/core-cdev.c b/drivers/firewire/core-cdev.c
index 73cc2f2dcbf9..bdf4b035325e 100644
--- a/drivers/firewire/core-cdev.c
+++ b/drivers/firewire/core-cdev.c
@@ -39,7 +39,7 @@
/*
* ABI version history is documented in linux/firewire-cdev.h.
*/
-#define FW_CDEV_KERNEL_VERSION 5
+#define FW_CDEV_KERNEL_VERSION 6
#define FW_CDEV_VERSION_EVENT_REQUEST2 4
#define FW_CDEV_VERSION_ALLOCATE_REGION_END 4
#define FW_CDEV_VERSION_AUTO_FLUSH_ISO_OVERFLOW 5