Skip to content

Commit c789975

Browse files
resolved conflicts
1 parent d6c1e41 commit c789975

7 files changed

Lines changed: 7 additions & 5 deletions

File tree

boards/configurations/nrf52840dk/nrf52840dk-test-kernel/src/test/aes_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use capsules_core::test::capsule_test::{CapsuleTest, CapsuleTestClient};
2929
use capsules_extra::test::aes::TestAes128Cbc;
3030
use capsules_extra::test::aes::TestAes128Ctr;
3131
use capsules_extra::test::aes::TestAes128Ecb;
32-
use kernel::hil::symmetric_encryption::{AES, AES128_KEY_SIZE, AES_BLOCK_SIZE};
32+
use kernel::hil::symmetric_encryption::{AES, AES_BLOCK_SIZE, AES128_KEY_SIZE};
3333
use kernel::static_init;
3434
use nrf52840::aes::AesECB;
3535

boards/imix/src/test/aes_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
use capsules_extra::test::aes::TestAes128Cbc;
2929
use capsules_extra::test::aes::TestAes128Ctr;
30-
use kernel::hil::symmetric_encryption::{AES, AES128_KEY_SIZE, AES_BLOCK_SIZE};
30+
use kernel::hil::symmetric_encryption::{AES, AES_BLOCK_SIZE, AES128_KEY_SIZE};
3131
use kernel::static_init;
3232
use sam4l::aes::Aes;
3333

boards/nordic/nrf52dk/src/tests/aes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Copyright Tock Contributors 2022.
44

55
use capsules_extra::test::aes::TestAes128Ctr;
6-
use kernel::hil::symmetric_encryption::{AES, AES128_KEY_SIZE, AES_BLOCK_SIZE};
6+
use kernel::hil::symmetric_encryption::{AES, AES_BLOCK_SIZE, AES128_KEY_SIZE};
77
use kernel::static_init;
88
use nrf52832::aes::AesECB;
99

boards/opentitan/earlgrey-cw310/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use kernel::hil::hasher::Hasher;
3030
use kernel::hil::i2c::I2CMaster;
3131
use kernel::hil::led::LedHigh;
3232
use kernel::hil::rng::Rng;
33-
use kernel::hil::symmetric_encryption::{AES, AES128, AES_BLOCK_SIZE};
33+
use kernel::hil::symmetric_encryption::{AES, AES_BLOCK_SIZE, AES128};
3434
use kernel::platform::{KernelResources, SyscallDriverLookup};
3535
use kernel::utilities::registers::interfaces::ReadWriteable;
3636
use kernel::utilities::single_thread_value::SingleThreadValue;

boards/opentitan/earlgrey-cw310/src/tests/aes_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use capsules_extra::test::aes_ccm;
1313
use capsules_extra::test::aes_gcm;
1414
use earlgrey::aes::Aes;
1515
use kernel::debug;
16-
use kernel::hil::symmetric_encryption::{AES128_KEY_SIZE, AES_BLOCK_SIZE};
16+
use kernel::hil::symmetric_encryption::{AES_BLOCK_SIZE, AES128_KEY_SIZE};
1717
use kernel::static_init;
1818

1919
/// The only 'test_case' for aes_test as directly invoked by the test runner,

chips/earlgrey/src/aes.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use kernel::deferred_call::{DeferredCall, DeferredCallClient};
1313
use kernel::hil;
1414
use kernel::hil::symmetric_encryption;
1515
use kernel::hil::symmetric_encryption::{AES_BLOCK_SIZE, AES128, AES128_KEY_SIZE};
16+
use kernel::utilities::StaticRef;
1617
use kernel::utilities::cells::{OptionalCell, TakeCell};
1718
use kernel::utilities::registers::interfaces::{Readable, Writeable};
1819
use kernel::utilities::registers::{

chips/sam4l/src/aes.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ use kernel::ErrorCode;
1919
use kernel::debug;
2020
use kernel::hil;
2121
use kernel::hil::symmetric_encryption::{AES_BLOCK_SIZE, AES128, AES128_KEY_SIZE};
22+
use kernel::utilities::StaticRef;
2223
use kernel::utilities::cells::{OptionalCell, TakeCell};
2324
use kernel::utilities::registers::interfaces::{Readable, Writeable};
2425
use kernel::utilities::registers::{ReadOnly, ReadWrite, WriteOnly, register_bitfields};

0 commit comments

Comments
 (0)