From e303570e16b2e6edfaff5fa2fc702c05b53c8671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 23 Aug 2018 18:02:32 +0200 Subject: [PATCH] [ion] Fix a register size wrongly defined --- ion/src/device/regs/tim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/device/regs/tim.h b/ion/src/device/regs/tim.h index 1d8abb3a0..d76f8e293 100644 --- a/ion/src/device/regs/tim.h +++ b/ion/src/device/regs/tim.h @@ -63,7 +63,7 @@ public: }; class PSC : public Register16 {}; - class ARR : public RegisterWidth {}; + class ARR : public Register16 {}; class CCR1 : public RegisterWidth {}; class CCR2 : public RegisterWidth {}; class CCR3 : public RegisterWidth {};