diff options
author | Linus Torvalds | 2024-06-28 16:11:02 -0700 |
---|---|---|
committer | Linus Torvalds | 2024-06-28 16:11:02 -0700 |
commit | b75f94727023c9d362eb875609dcc71a88a67480 (patch) | |
tree | cdd8d4f6434f04902b6e02c1b6a1ab3ccb9b6fc1 /drivers/tty | |
parent | 093d9603b60093a9aaae942db56107f6432a5dca (diff) | |
parent | 1c07c9be87dd3dd0634033bf08728b32465f08fb (diff) |
Merge tag 'hardening-v6.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
Pull hardening fixes from Kees Cook:
- Remove invalid tty __counted_by annotation (Nathan Chancellor)
- Add missing MODULE_DESCRIPTION()s for KUnit string tests (Jeff
Johnson)
- Remove non-functional per-arch kstack entropy filtering
* tag 'hardening-v6.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
tty: mxser: Remove __counted_by from mxser_board.ports[]
randomize_kstack: Remove non-functional per-arch entropy filtering
string: kunit: add missing MODULE_DESCRIPTION() macros
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/mxser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c index 458bb1280ebf..5b97e420a95f 100644 --- a/drivers/tty/mxser.c +++ b/drivers/tty/mxser.c @@ -288,7 +288,7 @@ struct mxser_board { enum mxser_must_hwid must_hwid; speed_t max_baud; - struct mxser_port ports[] __counted_by(nports); + struct mxser_port ports[] /* __counted_by(nports) */; }; static DECLARE_BITMAP(mxser_boards, MXSER_BOARDS); |