Skip to content

Commit a23c6a8

Browse files
authored
Fix new clippy warnings from Rust 1.84.0 (#52)
* Elide lifetimes as suggested by `clippy::needless_lifetimes`[1] * Fix doc list indentation warnings, `clippy::doc_lazy_continuation`[2], as appropriate * Add `Default` implementation for `SharedMemory` as suggested by `clippy::new_without_default`[3] [1]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes [2]: https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation [3]: https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
1 parent 5eadb2a commit a23c6a8

9 files changed

+19
-14
lines changed

mcan/src/bus.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,13 @@ pub trait DynAux {
201201
fn timestamp(&self) -> u16;
202202
}
203203

204-
impl<'a, Id: mcan_core::CanId, D: mcan_core::Dependencies<Id>> Aux<'a, Id, D> {
204+
impl<Id: mcan_core::CanId, D: mcan_core::Dependencies<Id>> Aux<'_, Id, D> {
205205
fn configuration_mode(&self) {
206206
self.reg.configuration_mode()
207207
}
208208
}
209209

210-
impl<'a, Id: mcan_core::CanId, D: mcan_core::Dependencies<Id>> DynAux for Aux<'a, Id, D> {
210+
impl<Id: mcan_core::CanId, D: mcan_core::Dependencies<Id>> DynAux for Aux<'_, Id, D> {
211211
type Id = Id;
212212
type Deps = D;
213213

mcan/src/config.rs

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pub struct TxConfig {
4343
/// - the time quantum `t_q`, which is a fraction of the peripheral clock
4444
/// - the number of time quanta in a bit time, determined by `phase_seg_1` and
4545
/// `phase_seg_2`
46+
///
4647
/// The configurable ranges of the parameters depend on which timing is changed.
4748
///
4849
/// This struct expects *real* values, extra subtractions and additions expected

mcan/src/interrupt.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ impl<Id: mcan_core::CanId, State> OwnedInterruptSet<Id, State> {
458458
///
459459
/// # Safety
460460
/// - Each interrupt of a CAN peripheral can only be contained in one
461-
/// `OwnedInterruptSet`, otherwise registers will be mutably aliased.
461+
/// `OwnedInterruptSet`, otherwise registers will be mutably aliased.
462462
/// - The reserved bits must not be included.
463463
/// - `State` type parameter must match the state in runtime.
464464
unsafe fn new(interrupts: InterruptSet) -> Self {

mcan/src/message/tx.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ pub struct MessageBuilder<'a> {
107107
pub store_tx_event: Option<u8>,
108108
}
109109

110-
impl<'a> MessageBuilder<'a> {
110+
impl MessageBuilder<'_> {
111111
/// Create the message in the format required by the peripheral.
112112
pub fn build<const N: usize>(self) -> Result<Message<N>, TooMuchData> {
113113
let mut data = [0; N];

mcan/src/messageram.rs

+6
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,9 @@ impl<C: Capacities> SharedMemory<C> {
9191
eligible_message_ram_start <= start && end_exclusive - eligible_message_ram_start <= 1 << 16
9292
}
9393
}
94+
95+
impl<C: Capacities> Default for SharedMemory<C> {
96+
fn default() -> Self {
97+
Self::new()
98+
}
99+
}

mcan/src/rx_dedicated_buffers.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,7 @@ impl<'a, P: mcan_core::CanId, M: rx::AnyMessage> RxDedicatedBuffer<'a, P, M> {
111111
}
112112
}
113113

114-
impl<'a, P: mcan_core::CanId, M: rx::AnyMessage> DynRxDedicatedBuffer
115-
for RxDedicatedBuffer<'a, P, M>
116-
{
114+
impl<P: mcan_core::CanId, M: rx::AnyMessage> DynRxDedicatedBuffer for RxDedicatedBuffer<'_, P, M> {
117115
type Id = P;
118116
type Message = M;
119117

@@ -138,7 +136,7 @@ impl<'a, P: mcan_core::CanId, M: rx::AnyMessage> DynRxDedicatedBuffer
138136
}
139137
}
140138

141-
impl<'a, P: mcan_core::CanId, M: rx::AnyMessage> Iterator for RxDedicatedBuffer<'a, P, M> {
139+
impl<P: mcan_core::CanId, M: rx::AnyMessage> Iterator for RxDedicatedBuffer<'_, P, M> {
142140
type Item = M;
143141

144142
fn next(&mut self) -> Option<Self::Item> {

mcan/src/rx_fifo.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ pub trait GetRxFifoRegs {
5454
unsafe fn registers(&self) -> &reg::RxFifoRegs;
5555
}
5656

57-
impl<'a, P: mcan_core::CanId, M: rx::AnyMessage> GetRxFifoRegs for RxFifo<'a, Fifo0, P, M> {
57+
impl<P: mcan_core::CanId, M: rx::AnyMessage> GetRxFifoRegs for RxFifo<'_, Fifo0, P, M> {
5858
unsafe fn registers(&self) -> &reg::RxFifoRegs {
5959
&(*P::register_block()).rxf0
6060
}
6161
}
62-
impl<'a, P: mcan_core::CanId, M: rx::AnyMessage> GetRxFifoRegs for RxFifo<'a, Fifo1, P, M> {
62+
impl<P: mcan_core::CanId, M: rx::AnyMessage> GetRxFifoRegs for RxFifo<'_, Fifo1, P, M> {
6363
unsafe fn registers(&self) -> &reg::RxFifoRegs {
6464
&(*P::register_block()).rxf1
6565
}
@@ -90,7 +90,7 @@ where
9090
}
9191
}
9292

93-
impl<'a, F, P: mcan_core::CanId, M: rx::AnyMessage> DynRxFifo for RxFifo<'a, F, P, M>
93+
impl<F, P: mcan_core::CanId, M: rx::AnyMessage> DynRxFifo for RxFifo<'_, F, P, M>
9494
where
9595
Self: GetRxFifoRegs,
9696
{
@@ -128,7 +128,7 @@ where
128128
}
129129
}
130130

131-
impl<'a, F, P: mcan_core::CanId, M: rx::AnyMessage> Iterator for RxFifo<'a, F, P, M>
131+
impl<F, P: mcan_core::CanId, M: rx::AnyMessage> Iterator for RxFifo<'_, F, P, M>
132132
where
133133
Self: GetRxFifoRegs,
134134
{

mcan/src/tx_buffers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ impl<'a, P: mcan_core::CanId, C: Capacities> Tx<'a, P, C> {
260260
}
261261
}
262262

263-
impl<'a, P: mcan_core::CanId, C: Capacities> DynTx for Tx<'a, P, C> {
263+
impl<P: mcan_core::CanId, C: Capacities> DynTx for Tx<'_, P, C> {
264264
type Id = P;
265265
type Message = C::TxMessage;
266266

mcan/src/tx_event_fifo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ impl<'a, P: mcan_core::CanId> TxEventFifo<'a, P> {
6161
}
6262
}
6363

64-
impl<'a, P: mcan_core::CanId> DynTxEventFifo for TxEventFifo<'a, P> {
64+
impl<P: mcan_core::CanId> DynTxEventFifo for TxEventFifo<'_, P> {
6565
type Id = P;
6666

6767
fn len(&self) -> usize {

0 commit comments

Comments
 (0)