Message ID | 20190729174154.4335-7-frank-w@public-files.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | implement poweroff for mt6323 / bpi-r2 | expand |
On Mon, 29 Jul 2019, Frank Wunderlich wrote: > From: Josef Friedl <josef.friedl@speed.at> > > simplyfications (resource definitions my DEFINE_RES_* macros) > > changes since v2: splitted v2 part 4 into 6+7 > > Signed-off-by: Josef Friedl <josef.friedl@speed.at> > Signed-off-by: Frank Wunderlich <frank-w@public-files.de> > --- > drivers/mfd/mt6397-core.c | 15 ++++----------- > 1 file changed, 4 insertions(+), 11 deletions(-) > > diff --git a/drivers/mfd/mt6397-core.c b/drivers/mfd/mt6397-core.c > index 337bcccdb914..5f7070267c9a 100644 > --- a/drivers/mfd/mt6397-core.c > +++ b/drivers/mfd/mt6397-core.c > @@ -1,10 +1,11 @@ > // SPDX-License-Identifier: GPL-2.0-only > /* > - * Copyright (c) 2014 MediaTek Inc. > + * Copyright (c) 2014-2018 MediaTek Inc. This is out of date. Please update it. Once fixed, please apply my: For my own reference: Acked-for-MFD-by: Lee Jones <lee.jones@linaro.org>
> Gesendet: Montag, 12. August 2019 um 12:22 Uhr > Von: "Lee Jones" <lee.jones@linaro.org> > > - * Copyright (c) 2014 MediaTek Inc. > > + * Copyright (c) 2014-2018 MediaTek Inc. > > This is out of date. Please update it. maybe i should drop change of this line completely (else it needs to be adjusted every year) regards Frank
On Mon, 12 Aug 2019, Frank Wunderlich wrote: > > Gesendet: Montag, 12. August 2019 um 12:22 Uhr > > Von: "Lee Jones" <lee.jones@linaro.org> > > > > - * Copyright (c) 2014 MediaTek Inc. > > > + * Copyright (c) 2014-2018 MediaTek Inc. > > > > This is out of date. Please update it. > > maybe i should drop change of this line completely (else it needs to be adjusted every year) It only needs changing when the Copyright is changed. If you want to update it to 2014-2019, that's fine. Or leaving it untouched, is also fine.
diff --git a/drivers/mfd/mt6397-core.c b/drivers/mfd/mt6397-core.c index 337bcccdb914..5f7070267c9a 100644 --- a/drivers/mfd/mt6397-core.c +++ b/drivers/mfd/mt6397-core.c @@ -1,10 +1,11 @@ // SPDX-License-Identifier: GPL-2.0-only /* - * Copyright (c) 2014 MediaTek Inc. + * Copyright (c) 2014-2018 MediaTek Inc. * Author: Flora Fu, MediaTek */ #include <linux/interrupt.h> +#include <linux/ioport.h> #include <linux/module.h> #include <linux/of_device.h> #include <linux/of_irq.h> @@ -23,16 +24,8 @@ #define MT6397_CID_CODE 0x97 static const struct resource mt6397_rtc_resources[] = { - { - .start = MT6397_RTC_BASE, - .end = MT6397_RTC_BASE + MT6397_RTC_SIZE, - .flags = IORESOURCE_MEM, - }, - { - .start = MT6397_IRQ_RTC, - .end = MT6397_IRQ_RTC, - .flags = IORESOURCE_IRQ, - }, + DEFINE_RES_MEM(MT6397_RTC_BASE, MT6397_RTC_SIZE), + DEFINE_RES_IRQ(MT6397_IRQ_RTC), }; static const struct resource mt6323_keys_resources[] = {