Skip to content

Commit

Permalink
fix license checker
Browse files Browse the repository at this point in the history
  • Loading branch information
Samir-Rashid committed Oct 1, 2024
1 parent 66b3149 commit 5830a93
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .lcignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
/tools/license-checker/testdata/many_errors.rs
/tools/license-checker/testdata/no_copyright.rs
/tools/license-checker/testdata/no_spdx.rs

/flux_support/*
2 changes: 1 addition & 1 deletion capsules/system/src/process_checker/signature.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2024.

//! Signature credential checker for checking process credentials.
use flux_rs::*;
use kernel::hil;
use kernel::process_checker::CheckResult;
use kernel::process_checker::{AppCredentialsPolicy, AppCredentialsPolicyClient};
Expand Down
4 changes: 4 additions & 0 deletions flux_support/src/flux_ptr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
use core::cmp::PartialOrd;
use core::convert::From;
use core::ops::{Deref, DerefMut};
use core::option::Option;
use core::option::Option::Some;
use core::ptr::NonNull;
use flux_rs::{refined_by, sig};
use std::ops::Rem;
Expand Down
1 change: 1 addition & 0 deletions flux_support/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ mod flux_ptr;
mod flux_range;
mod flux_register_interface;
mod math;
use core::panic;
pub use flux_ptr::*;
pub use flux_range::*;
pub use flux_register_interface::*;
Expand Down

0 comments on commit 5830a93

Please sign in to comment.