Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

acpi: fix clippy warnings and run clippy in CI #230

Merged
merged 4 commits into from
Nov 24, 2024

Commits on Nov 22, 2024

  1. acpi: remove needless lifetimes

    Running clippy on the ACPI crate returns several warnings about
    unneeded lifetimes, so remove them.
    00xc committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    87041ea View commit details
    Browse the repository at this point in the history
  2. acpi: fix misc clippy warnings

    00xc committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    e158098 View commit details
    Browse the repository at this point in the history
  3. acpi: fix safety docs

    Place safety documentation in a separate section so that clippy does
    not emit a warning for them. Add any missing safety documentation as
    well.
    00xc committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    bdaa870 View commit details
    Browse the repository at this point in the history
  4. ci: run clippy on acpi crate

    Now that all warnings have been fixed for the acpi crate, run clippy
    as part of CI. Once the warnings for the rest of the crates are fixed,
    they can be included in the CI run.
    00xc committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    b3b0955 View commit details
    Browse the repository at this point in the history