From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Chou Date: Tue, 3 Nov 2015 13:21:33 +0800 Subject: [U-Boot] [PATCH 6/8] timer: altera_timer: minor clean up In-Reply-To: <1446189498-26549-6-git-send-email-thomas@wytron.com.tw> References: <1446189498-26549-1-git-send-email-thomas@wytron.com.tw> <1446189498-26549-6-git-send-email-thomas@wytron.com.tw> Message-ID: <5638445D.8060908@wytron.com.tw> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 2015?10?30? 15:18, Thomas Chou wrote: > - Moved macro definitions to top > - Remove the penultimate comma in of_match ids > > Signed-off-by: Thomas Chou > --- > drivers/timer/altera_timer.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > Applied to u-boot-nios. > diff --git a/drivers/timer/altera_timer.c b/drivers/timer/altera_timer.c > index 288357c..7952ad7 100644 > --- a/drivers/timer/altera_timer.c > +++ b/drivers/timer/altera_timer.c > @@ -16,6 +16,11 @@ > > DECLARE_GLOBAL_DATA_PTR; > > +/* control register */ > +#define ALTERA_TIMER_CONT BIT(1) /* Continuous mode */ > +#define ALTERA_TIMER_START BIT(2) /* Start timer */ > +#define ALTERA_TIMER_STOP BIT(3) /* Stop timer */ > + > struct altera_timer_regs { > u32 status; /* Timer status reg */ > u32 control; /* Timer control reg */ > @@ -30,11 +35,6 @@ struct altera_timer_platdata { > unsigned long clock_rate; > }; > > -/* control register */ > -#define ALTERA_TIMER_CONT BIT(1) /* Continuous mode */ > -#define ALTERA_TIMER_START BIT(2) /* Start timer */ > -#define ALTERA_TIMER_STOP BIT(3) /* Stop timer */ > - > static int altera_timer_get_count(struct udevice *dev, unsigned long *count) > { > struct altera_timer_platdata *plat = dev->platdata; > @@ -88,7 +88,7 @@ static const struct timer_ops altera_timer_ops = { > }; > > static const struct udevice_id altera_timer_ids[] = { > - { .compatible = "altr,timer-1.0", }, > + { .compatible = "altr,timer-1.0" }, > { } > }; > >