Commit 180534c09b2d for kernel

commit 180534c09b2dd877c3ec83c900253765923c2e42
Merge: 6a0b3fb48d48 f4c3e38111fd
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date:   Sun Sep 13 09:28:28 2026 -0700

    Merge tag 'rust-fixes-7.3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linux

    Pull Rust fixes from Miguel Ojeda:
     "Toolchain and infrastructure:

       - Work around a 'bindgen' 0.73.2 bug that emits an 'allow' attribute
         for 'unnecessary_transmutes', which is unknown in older compilers

       - Clean 'clippy::as_underscore' lints in generated code by the new
         'bindgen' 0.73.0+ releases

       - Clean new 'clippy::needless_range_loop' lint for the upcoming Rust
         1.100.0 (expected 2026-11-12)

      'kernel' crate:

       - 'num' module: fix soundness issue in 'Bounded' by sealing the
         'Integer' trait

      'pin-init' crate:

       - Fix unreachable warning for the upcoming Rust 1.100.0 (expected
         2026-11-12) due to 'Infallible' becoming an alias of '!'

      Samples:

       - Add missing newlines in 'pr_*!'s macro calls"

    * tag 'rust-fixes-7.3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ojeda/linux:
      rust: allow `unknown_lints` in generated bindings for Rust < 1.88
      rust: allow `clippy::as_underscore` in the generated bindings
      rust: num: seal Integer
      drm/panic: clean new `clippy::needless_range_loop` lint for Rust 1.100.0
      rust: samples: add missing newlines in rust_print_main
      rust: pin-init: use irrefutable pattern for `stack_pin_init`