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; pub mod serv;
#[doc = "Compare Low Register"] #[doc = "Compare Low Register"]
pub struct CMPL { pub struct CMPL {
register: ::vcell::VolatileCell<u8>, _register: ::vcell::VolatileCell<u8>,
} }
#[doc = "Compare Low Register"] #[doc = "Compare Low Register"]
pub mod cmpl; pub mod cmpl;
#[doc = "Compare High Register"] #[doc = "Compare High Register"]
pub struct CMPH { pub struct CMPH {
register: ::vcell::VolatileCell<u8>, _register: ::vcell::VolatileCell<u8>,
} }
#[doc = "Compare High Register"] #[doc = "Compare High Register"]
pub mod cmph; pub mod cmph;
#[doc = "Clock Prescaler Register"] #[doc = "Clock Prescaler Register"]
pub struct CLKPRESCALER { pub struct CLKPRESCALER {
register: ::vcell::VolatileCell<u8>, _register: ::vcell::VolatileCell<u8>,
} }
#[doc = "Clock Prescaler Register"] #[doc = "Clock Prescaler Register"]
pub mod clkprescaler; pub mod clkprescaler;