Run with updated version of rustfmt

This commit is contained in:
Kjetil Kjeka
2017-09-23 20:31:10 +02:00
parent 7facea48b2
commit 2fc3ce22de
1658 changed files with 25191 additions and 42351 deletions

View File

@ -22,7 +22,9 @@ impl super::PCC_FLEXCAN2 {
#[doc = r" Reads the contents of the register"]
#[inline]
pub fn read(&self) -> R {
R { bits: self.register.get() }
R {
bits: self.register.get(),
}
}
#[doc = r" Writes to the register"]
#[inline]
@ -43,10 +45,8 @@ impl super::PCC_FLEXCAN2 {
#[doc = "Possible values of the field `CGC`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CGCR {
#[doc = "Clock disabled"]
_0,
#[doc = "Clock enabled. The current clock selection and divider options are locked."]
_1,
#[doc = "Clock disabled"] _0,
#[doc = "Clock enabled. The current clock selection and divider options are locked."] _1,
}
impl CGCR {
#[doc = r" Returns `true` if the bit is clear (0)"]
@ -90,10 +90,8 @@ impl CGCR {
#[doc = "Possible values of the field `PR`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum PRR {
#[doc = "Peripheral is not present."]
_0,
#[doc = "Peripheral is present."]
_1,
#[doc = "Peripheral is not present."] _0,
#[doc = "Peripheral is present."] _1,
}
impl PRR {
#[doc = r" Returns `true` if the bit is clear (0)"]
@ -136,10 +134,8 @@ impl PRR {
}
#[doc = "Values that can be written to the field `CGC`"]
pub enum CGCW {
#[doc = "Clock disabled"]
_0,
#[doc = "Clock enabled. The current clock selection and divider options are locked."]
_1,
#[doc = "Clock disabled"] _0,
#[doc = "Clock enabled. The current clock selection and divider options are locked."] _1,
}
impl CGCW {
#[allow(missing_docs)]