diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-11 17:42:15 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-11 17:42:15 +0100 |
commit | 3779cf1770e1be03d60623d965f5e56897fbfa43 (patch) | |
tree | 9b2c39df847e0cbc2b2ba9a7b93f7712a25140f6 /src/devices/mode | |
parent | fce3d8546bd619964ec5dd1594cd93e744a99521 (diff) | |
download | ads1x1x-async-3779cf1770e1be03d60623d965f5e56897fbfa43.tar.gz ads1x1x-async-3779cf1770e1be03d60623d965f5e56897fbfa43.tar.xz ads1x1x-async-3779cf1770e1be03d60623d965f5e56897fbfa43.zip |
Avoid unnecessary type
Diffstat (limited to 'src/devices/mode')
-rw-r--r-- | src/devices/mode/continuous.rs | 2 | ||||
-rw-r--r-- | src/devices/mode/oneshot.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/mode/continuous.rs b/src/devices/mode/continuous.rs index a06df60..e90b1ae 100644 --- a/src/devices/mode/continuous.rs +++ b/src/devices/mode/continuous.rs @@ -15,7 +15,7 @@ where iface: self.iface, config: self.config, a_conversion_was_started: self.a_conversion_was_started, - converter: self.converter, + _conv: PhantomData, _ic: PhantomData, _mode: PhantomData }) diff --git a/src/devices/mode/oneshot.rs b/src/devices/mode/oneshot.rs index e8aa533..de7e11e 100644 --- a/src/devices/mode/oneshot.rs +++ b/src/devices/mode/oneshot.rs @@ -18,7 +18,7 @@ where iface: self.iface, config: self.config, a_conversion_was_started: self.a_conversion_was_started, - converter: self.converter, + _conv: PhantomData, _ic: PhantomData, _mode: PhantomData }) |