From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Shevchenko Date: Tue, 20 Nov 2018 23:52:34 +0200 Subject: [U-Boot] [PATCH v3 3/7] serial: ns16550: Group reg_* members of ns16550_platdata In-Reply-To: <20181120215238.21551-1-andriy.shevchenko@linux.intel.com> References: <20181120215238.21551-1-andriy.shevchenko@linux.intel.com> Message-ID: <20181120215238.21551-4-andriy.shevchenko@linux.intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Group reg_* members of struct ns16550_platdata together for better maintenance. No functional change intended. Signed-off-by: Andy Shevchenko --- include/ns16550.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ns16550.h b/include/ns16550.h index 5fcbcd2e74..f565645d65 100644 --- a/include/ns16550.h +++ b/include/ns16550.h @@ -55,8 +55,8 @@ struct ns16550_platdata { unsigned long base; int reg_shift; - int clock; int reg_offset; + int clock; u32 fcr; }; -- 2.19.1