Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1589595 > unrolled thread

[PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple pdata-quirks

Started byBartosz Golaszewski <bgolaszewski@baylibre.com>
First post2017-02-28 17:20 +0100
Last post2017-03-07 12:10 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple pdata-quirks Bartosz Golaszewski <bgolaszewski@baylibre.com> - 2017-02-28 17:20 +0100
    Re: [PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple  pdata-quirks Sekhar Nori <nsekhar@ti.com> - 2017-03-07 12:10 +0100

#1589595 — [PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple pdata-quirks

FromBartosz Golaszewski <bgolaszewski@baylibre.com>
Date2017-02-28 17:20 +0100
Subject[PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple pdata-quirks
Message-ID<tfSFk-6Rj-23@gated-at.bofh.it>
We currently bail-out after applying a single quirk. We will want
to reuse the function doing the vpif capture registration so remove
the break; and continue iterating over the quirk array.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
 arch/arm/mach-davinci/pdata-quirks.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/mach-davinci/pdata-quirks.c b/arch/arm/mach-davinci/pdata-quirks.c
index 5b57da4..36fb217 100644
--- a/arch/arm/mach-davinci/pdata-quirks.c
+++ b/arch/arm/mach-davinci/pdata-quirks.c
@@ -23,7 +23,6 @@ static void pdata_quirks_check(struct pdata_init *quirks)
 		if (of_machine_is_compatible(quirks->compatible)) {
 			if (quirks->fn)
 				quirks->fn();
-			break;
 		}
 		quirks++;
 	}
-- 
2.9.3

[toc] | [next] | [standalone]


#1594128 — Re: [PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple pdata-quirks

FromSekhar Nori <nsekhar@ti.com>
Date2017-03-07 12:10 +0100
SubjectRe: [PATCH v4 1/6] ARM: davinci: da8xx: allow having multiple pdata-quirks
Message-ID<tilaa-6G6-31@gated-at.bofh.it>
In reply to#1589595
On Tuesday 28 February 2017 09:31 PM, Bartosz Golaszewski wrote:
> We currently bail-out after applying a single quirk. We will want
> to reuse the function doing the vpif capture registration so remove
> the break; and continue iterating over the quirk array.
> 
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>

This patch is not really da8xx specific, so I dropped the da8xx: in
subject line while applying.

Thanks,
Sekhar

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web