From ce1d90c15bca2c22dd9a21cf7402d95c1acdb6d3 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 9 May 2019 16:47:40 +0100 Subject: [PATCH] devices: legacy: Fix rustfmt issue Signed-off-by: Rob Bradford --- devices/src/legacy/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/src/legacy/mod.rs b/devices/src/legacy/mod.rs index b01b9ebf3..4e7f53666 100644 --- a/devices/src/legacy/mod.rs +++ b/devices/src/legacy/mod.rs @@ -5,8 +5,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-BSD-3-Clause file. -mod serial; mod i8042; +mod serial; -pub use self::serial::Serial; pub use self::i8042::I8042Device; +pub use self::serial::Serial;