All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
@ 2014-12-28 11:37 Oscar Forner Martinez
  2015-01-07 17:55 ` Kalle Valo
  0 siblings, 1 reply; 8+ messages in thread
From: Oscar Forner Martinez @ 2014-12-28 11:37 UTC (permalink / raw)
  To: zajec5; +Cc: linux-wireless, linux-kernel, Oscar Forner Martinez

Two lines with more than 80 characters per line have been split in several lines.

Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
---
 drivers/bcma/driver_chipcommon.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/bcma/driver_chipcommon.c b/drivers/bcma/driver_chipcommon.c
index 19f6796..ee5a172 100644
--- a/drivers/bcma/driver_chipcommon.c
+++ b/drivers/bcma/driver_chipcommon.c
@@ -97,7 +97,8 @@ int bcma_chipco_watchdog_register(struct bcma_drv_cc *cc)
 	wdt.driver_data = cc;
 	wdt.timer_set = bcma_chipco_watchdog_timer_set_wdt;
 	wdt.timer_set_ms = bcma_chipco_watchdog_timer_set_ms_wdt;
-	wdt.max_timer_ms = bcma_chipco_watchdog_get_max_timer(cc) / cc->ticks_per_ms;
+	wdt.max_timer_ms =
+		bcma_chipco_watchdog_get_max_timer(cc) / cc->ticks_per_ms;
 
 	pdev = platform_device_register_data(NULL, "bcm47xx-wdt",
 					     cc->core->bus->num, &wdt,
@@ -335,7 +336,8 @@ void bcma_chipco_serial_init(struct bcma_drv_cc *cc)
 				       | BCMA_CC_CORECTL_UARTCLKEN);
 		}
 	} else {
-		bcma_err(cc->core->bus, "serial not supported on this device ccrev: 0x%x\n", ccrev);
+		bcma_err(cc->core->bus, "serial not supported on this device ccrev: 0x%x\n",
+			 ccrev);
 		return;
 	}
 
-- 
2.2.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2014-12-28 11:37 [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line Oscar Forner Martinez
@ 2015-01-07 17:55 ` Kalle Valo
  2015-01-07 18:12   ` Rafał Miłecki
  0 siblings, 1 reply; 8+ messages in thread
From: Kalle Valo @ 2015-01-07 17:55 UTC (permalink / raw)
  To: Oscar Forner Martinez; +Cc: zajec5, linux-wireless, linux-kernel

Oscar Forner Martinez <oscar.forner.martinez@gmail.com> writes:

> Two lines with more than 80 characters per line have been split in several lines.
>
> Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>

Thanks, applied to wireless-drivers-next.git.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2015-01-07 17:55 ` Kalle Valo
@ 2015-01-07 18:12   ` Rafał Miłecki
  2015-01-07 18:39     ` Kalle Valo
  0 siblings, 1 reply; 8+ messages in thread
From: Rafał Miłecki @ 2015-01-07 18:12 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Oscar Forner Martinez, linux-wireless, Linux Kernel Mailing List

On 7 January 2015 at 18:55, Kalle Valo <kvalo@codeaurora.org> wrote:
> Oscar Forner Martinez <oscar.forner.martinez@gmail.com> writes:
>
>> Two lines with more than 80 characters per line have been split in several lines.
>>
>> Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
>
> Thanks, applied to wireless-drivers-next.git.

Could you still replace it (V4) with an older version (V3)? Before I
explained V3 was OK Oscar already sent this (worse) V4.

This is not critical though, we can always send separated patch for
one more line > 80 chars.

-- 
Rafał

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2015-01-07 18:12   ` Rafał Miłecki
@ 2015-01-07 18:39     ` Kalle Valo
  2015-01-07 20:54       ` Rafał Miłecki
  0 siblings, 1 reply; 8+ messages in thread
From: Kalle Valo @ 2015-01-07 18:39 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Oscar Forner Martinez, linux-wireless, Linux Kernel Mailing List

Rafał Miłecki <zajec5@gmail.com> writes:

> On 7 January 2015 at 18:55, Kalle Valo <kvalo@codeaurora.org> wrote:
>> Oscar Forner Martinez <oscar.forner.martinez@gmail.com> writes:
>>
>>> Two lines with more than 80 characters per line have been split in several lines.
>>>
>>> Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
>>
>> Thanks, applied to wireless-drivers-next.git.
>
> Could you still replace it (V4) with an older version (V3)? Before I
> explained V3 was OK Oscar already sent this (worse) V4.

No. I'm not going to rebase a public git tree unless there's a huge
disaster.

But if I see V4 I'm going to assume that's the one I need to apply, not
some older version. If V4 is not good for some reason, make it
ABSOLUTELY clear that I should not apply it. I do not want to start
guessing what patch I should apply.

> This is not critical though, we can always send separated patch for
> one more line > 80 chars.

Please send a followup patch if you want to fix something.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2015-01-07 18:39     ` Kalle Valo
@ 2015-01-07 20:54       ` Rafał Miłecki
  2015-01-09 14:03         ` Kalle Valo
  0 siblings, 1 reply; 8+ messages in thread
From: Rafał Miłecki @ 2015-01-07 20:54 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Oscar Forner Martinez, linux-wireless, Linux Kernel Mailing List

On 7 January 2015 at 19:39, Kalle Valo <kvalo@codeaurora.org> wrote:
> Rafał Miłecki <zajec5@gmail.com> writes:
>
>> On 7 January 2015 at 18:55, Kalle Valo <kvalo@codeaurora.org> wrote:
>>> Oscar Forner Martinez <oscar.forner.martinez@gmail.com> writes:
>>>
>>>> Two lines with more than 80 characters per line have been split in several lines.
>>>>
>>>> Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
>>>
>>> Thanks, applied to wireless-drivers-next.git.
>>
>> Could you still replace it (V4) with an older version (V3)? Before I
>> explained V3 was OK Oscar already sent this (worse) V4.
>
> No. I'm not going to rebase a public git tree unless there's a huge
> disaster.

I was pretty sure you didn't push it yet, that's why I asked.


> But if I see V4 I'm going to assume that's the one I need to apply, not
> some older version. If V4 is not good for some reason, make it
> ABSOLUTELY clear that I should not apply it. I do not want to start
> guessing what patch I should apply.

Yeah, it wasn't your fault of course. Oscar sent V4 too early and I
didn't make things clear. Sorry.

-- 
Rafał

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2015-01-07 20:54       ` Rafał Miłecki
@ 2015-01-09 14:03         ` Kalle Valo
  2015-01-09 14:38           ` Rafał Miłecki
  0 siblings, 1 reply; 8+ messages in thread
From: Kalle Valo @ 2015-01-09 14:03 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Oscar Forner Martinez, linux-wireless, Linux Kernel Mailing List

Rafał Miłecki <zajec5@gmail.com> writes:

> On 7 January 2015 at 19:39, Kalle Valo <kvalo@codeaurora.org> wrote:
>> Rafał Miłecki <zajec5@gmail.com> writes:
>>
>>> On 7 January 2015 at 18:55, Kalle Valo <kvalo@codeaurora.org> wrote:
>>>> Oscar Forner Martinez <oscar.forner.martinez@gmail.com> writes:
>>>>
>>>>> Two lines with more than 80 characters per line have been split in several lines.
>>>>>
>>>>> Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
>>>>
>>>> Thanks, applied to wireless-drivers-next.git.
>>>
>>> Could you still replace it (V4) with an older version (V3)? Before I
>>> explained V3 was OK Oscar already sent this (worse) V4.
>>
>> No. I'm not going to rebase a public git tree unless there's a huge
>> disaster.
>
> I was pretty sure you didn't push it yet, that's why I asked.

Heh, we got lucky. So I had actually run 'git push' but missed that the
authenticate had failed. A good thing you pointed out this. So I know
dropped this patch from my tree and pushed rest of the patches I had
applied.

Rafal, is this the patch I should apply:

https://patchwork.kernel.org/patch/5545021/

Please confirm.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2015-01-09 14:03         ` Kalle Valo
@ 2015-01-09 14:38           ` Rafał Miłecki
  2015-01-09 14:43             ` Kalle Valo
  0 siblings, 1 reply; 8+ messages in thread
From: Rafał Miłecki @ 2015-01-09 14:38 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Oscar Forner Martinez, linux-wireless, Linux Kernel Mailing List

On 9 January 2015 at 15:03, Kalle Valo <kvalo@codeaurora.org> wrote:
> Rafał Miłecki <zajec5@gmail.com> writes:
>
>> On 7 January 2015 at 19:39, Kalle Valo <kvalo@codeaurora.org> wrote:
>>> Rafał Miłecki <zajec5@gmail.com> writes:
>>>
>>>> On 7 January 2015 at 18:55, Kalle Valo <kvalo@codeaurora.org> wrote:
>>>>> Oscar Forner Martinez <oscar.forner.martinez@gmail.com> writes:
>>>>>
>>>>>> Two lines with more than 80 characters per line have been split in several lines.
>>>>>>
>>>>>> Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
>>>>>
>>>>> Thanks, applied to wireless-drivers-next.git.
>>>>
>>>> Could you still replace it (V4) with an older version (V3)? Before I
>>>> explained V3 was OK Oscar already sent this (worse) V4.
>>>
>>> No. I'm not going to rebase a public git tree unless there's a huge
>>> disaster.
>>
>> I was pretty sure you didn't push it yet, that's why I asked.
>
> Heh, we got lucky. So I had actually run 'git push' but missed that the
> authenticate had failed. A good thing you pointed out this. So I know
> dropped this patch from my tree and pushed rest of the patches I had
> applied.
>
> Rafal, is this the patch I should apply:
>
> https://patchwork.kernel.org/patch/5545021/
>
> Please confirm.

That's correct.

-- 
Rafał

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line.
  2015-01-09 14:38           ` Rafał Miłecki
@ 2015-01-09 14:43             ` Kalle Valo
  0 siblings, 0 replies; 8+ messages in thread
From: Kalle Valo @ 2015-01-09 14:43 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Oscar Forner Martinez, linux-wireless, Linux Kernel Mailing List

Rafał Miłecki <zajec5@gmail.com> writes:

>> Rafal, is this the patch I should apply:
>>
>> https://patchwork.kernel.org/patch/5545021/
>>
>> Please confirm.
>
> That's correct.

Thanks. I marked it as 'Under Review' in patchwork and will apply in my
next commit round.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-01-09 14:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-28 11:37 [PATCH v4] bcma: fix two coding style issues, more than 80 characters per line Oscar Forner Martinez
2015-01-07 17:55 ` Kalle Valo
2015-01-07 18:12   ` Rafał Miłecki
2015-01-07 18:39     ` Kalle Valo
2015-01-07 20:54       ` Rafał Miłecki
2015-01-09 14:03         ` Kalle Valo
2015-01-09 14:38           ` Rafał Miłecki
2015-01-09 14:43             ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.