diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-01 18:18:20 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-01 18:18:20 +0300 |
commit | 1874a42a7d74ea85a63673875f4242722a9f624b (patch) | |
tree | 3fd114f706dae15fce3fdf1218f6250e1754df13 /include | |
parent | cd69bf361e18091bff20c6f80670911682803650 (diff) | |
parent | 4420528254153189c70b6267593e445dc8654e37 (diff) | |
download | linux-1874a42a7d74ea85a63673875f4242722a9f624b.tar.xz |
Merge tag 'firewire-fixes-6.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394
Pull firewire fix from Takashi Sakamoto:
"A single patch to use a flexible array rather than a zero-length one"
* tag 'firewire-fixes-6.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394:
firewire: Replace zero-length array with flexible-array member
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/firewire.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/firewire.h b/include/linux/firewire.h index 1716c01c4e54..efb6e2cf2034 100644 --- a/include/linux/firewire.h +++ b/include/linux/firewire.h @@ -391,7 +391,7 @@ struct fw_iso_packet { u32 tag:2; /* tx: Tag in packet header */ u32 sy:4; /* tx: Sy in packet header */ u32 header_length:8; /* Length of immediate header */ - u32 header[0]; /* tx: Top of 1394 isoch. data_block */ + u32 header[]; /* tx: Top of 1394 isoch. data_block */ }; #define FW_ISO_CONTEXT_TRANSMIT 0 |