ewm: prefix unused fields with _

Fixes compilation
This commit is contained in:
Tmplt 2019-01-16 15:42:45 +01:00
parent e0ddb38a51
commit 533cebbe28
1 changed files with 3 additions and 3 deletions

View File

@ -27,19 +27,19 @@ pub struct SERV {
pub mod serv;
#[doc = "Compare Low Register"]
pub struct CMPL {
register: ::vcell::VolatileCell<u8>,
_register: ::vcell::VolatileCell<u8>,
}
#[doc = "Compare Low Register"]
pub mod cmpl;
#[doc = "Compare High Register"]
pub struct CMPH {
register: ::vcell::VolatileCell<u8>,
_register: ::vcell::VolatileCell<u8>,
}
#[doc = "Compare High Register"]
pub mod cmph;
#[doc = "Clock Prescaler Register"]
pub struct CLKPRESCALER {
register: ::vcell::VolatileCell<u8>,
_register: ::vcell::VolatileCell<u8>,
}
#[doc = "Clock Prescaler Register"]
pub mod clkprescaler;