All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm/tegra: Fix tegra irq_data conversion
@ 2011-01-16  5:41 Grant Likely
  2011-01-16 10:21 ` Lennert Buytenhek
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2011-01-16  5:41 UTC (permalink / raw)
  To: linux-arm-kernel

Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
conversion." missed changing one reference to 'irq' in the function
tegra_gpio_irq_set_type().  This patch fixes the build error.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
 arch/arm/mach-tegra/gpio.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-tegra/gpio.c b/arch/arm/mach-tegra/gpio.c
index bd06620..ad80488 100644
--- a/arch/arm/mach-tegra/gpio.c
+++ b/arch/arm/mach-tegra/gpio.c
@@ -207,9 +207,9 @@ static int tegra_gpio_irq_set_type(struct irq_data *d, unsigned int type)
 	spin_unlock_irqrestore(&bank->lvl_lock[port], flags);
 
 	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
-		__set_irq_handler_unlocked(irq, handle_level_irq);
+		__set_irq_handler_unlocked(d->irq, handle_level_irq);
 	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
-		__set_irq_handler_unlocked(irq, handle_edge_irq);
+		__set_irq_handler_unlocked(d->irq, handle_edge_irq);
 
 	return 0;
 }

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-16  5:41 [PATCH] arm/tegra: Fix tegra irq_data conversion Grant Likely
@ 2011-01-16 10:21 ` Lennert Buytenhek
  2011-01-16 15:53   ` Olof Johansson
  0 siblings, 1 reply; 8+ messages in thread
From: Lennert Buytenhek @ 2011-01-16 10:21 UTC (permalink / raw)
  To: linux-arm-kernel

On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:

> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
> conversion." missed changing one reference to 'irq' in the function
> tegra_gpio_irq_set_type().  This patch fixes the build error.
> 
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>

I built this queue against all defconfigs, but there doesn't seem to
be one for tegra at the moment, which is why I missed this.

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-16 10:21 ` Lennert Buytenhek
@ 2011-01-16 15:53   ` Olof Johansson
  2011-01-17 22:17     ` Colin Cross
  0 siblings, 1 reply; 8+ messages in thread
From: Olof Johansson @ 2011-01-16 15:53 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jan 16, 2011 at 2:21 AM, Lennert Buytenhek
<buytenh@wantstofly.org> wrote:
> On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:
>
>> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
>> conversion." missed changing one reference to 'irq' in the function
>> tegra_gpio_irq_set_type(). ?This patch fixes the build error.
>>
>> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>
> Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>

Acked-by: Olof Johansson <olof@lixom.net>

> I built this queue against all defconfigs, but there doesn't seem to
> be one for tegra at the moment, which is why I missed this.

Yep, planning on fixing this for .39.


-Olof

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-16 15:53   ` Olof Johansson
@ 2011-01-17 22:17     ` Colin Cross
  2011-01-17 22:49       ` Grant Likely
  0 siblings, 1 reply; 8+ messages in thread
From: Colin Cross @ 2011-01-17 22:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jan 16, 2011 at 7:53 AM, Olof Johansson <olof@lixom.net> wrote:
> On Sun, Jan 16, 2011 at 2:21 AM, Lennert Buytenhek
> <buytenh@wantstofly.org> wrote:
>> On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:
>>
>>> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
>>> conversion." missed changing one reference to 'irq' in the function
>>> tegra_gpio_irq_set_type(). ?This patch fixes the build error.
>>>
>>> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>
>> Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>
>
> Acked-by: Olof Johansson <olof@lixom.net>
>
>> I built this queue against all defconfigs, but there doesn't seem to
>> be one for tegra at the moment, which is why I missed this.
>
> Yep, planning on fixing this for .39.
>
>
> -Olof
>

This should get fixed in .38.  Has someone picked it up, or should I
put it in through my tree?

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-17 22:17     ` Colin Cross
@ 2011-01-17 22:49       ` Grant Likely
  2011-01-27  3:41         ` Grant Likely
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2011-01-17 22:49 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jan 17, 2011 at 3:17 PM, Colin Cross <ccross@android.com> wrote:
> On Sun, Jan 16, 2011 at 7:53 AM, Olof Johansson <olof@lixom.net> wrote:
>> On Sun, Jan 16, 2011 at 2:21 AM, Lennert Buytenhek
>> <buytenh@wantstofly.org> wrote:
>>> On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:
>>>
>>>> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
>>>> conversion." missed changing one reference to 'irq' in the function
>>>> tegra_gpio_irq_set_type(). ?This patch fixes the build error.
>>>>
>>>> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>>
>>> Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>
>>
>> Acked-by: Olof Johansson <olof@lixom.net>
>>
>>> I built this queue against all defconfigs, but there doesn't seem to
>>> be one for tegra at the moment, which is why I missed this.
>>
>> Yep, planning on fixing this for .39.
>>
>>
>> -Olof
>>
>
> This should get fixed in .38. ?Has someone picked it up, or should I
> put it in through my tree?

I don't think Olof picked it up (seeing as he only acked it and it's
not in Linus' tree).  You should take it through your tree.

g.

-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-17 22:49       ` Grant Likely
@ 2011-01-27  3:41         ` Grant Likely
  2011-01-27  5:42           ` Colin Cross
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2011-01-27  3:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jan 17, 2011 at 3:49 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
> On Mon, Jan 17, 2011 at 3:17 PM, Colin Cross <ccross@android.com> wrote:
>> On Sun, Jan 16, 2011 at 7:53 AM, Olof Johansson <olof@lixom.net> wrote:
>>> On Sun, Jan 16, 2011 at 2:21 AM, Lennert Buytenhek
>>> <buytenh@wantstofly.org> wrote:
>>>> On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:
>>>>
>>>>> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
>>>>> conversion." missed changing one reference to 'irq' in the function
>>>>> tegra_gpio_irq_set_type(). ?This patch fixes the build error.
>>>>>
>>>>> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>>>
>>>> Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>
>>>
>>> Acked-by: Olof Johansson <olof@lixom.net>
>>>
>>>> I built this queue against all defconfigs, but there doesn't seem to
>>>> be one for tegra at the moment, which is why I missed this.
>>>
>>> Yep, planning on fixing this for .39.
>>>
>>>
>>> -Olof
>>>
>>
>> This should get fixed in .38. ?Has someone picked it up, or should I
>> put it in through my tree?
>
> I don't think Olof picked it up (seeing as he only acked it and it's
> not in Linus' tree). ?You should take it through your tree.

Ping?  I've not seen this hit Linus' tree yet.  Do you want me to take
care of it?

g.

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-27  3:41         ` Grant Likely
@ 2011-01-27  5:42           ` Colin Cross
  2011-01-27  6:02             ` Grant Likely
  0 siblings, 1 reply; 8+ messages in thread
From: Colin Cross @ 2011-01-27  5:42 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jan 26, 2011 at 7:41 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
> On Mon, Jan 17, 2011 at 3:49 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
>> On Mon, Jan 17, 2011 at 3:17 PM, Colin Cross <ccross@android.com> wrote:
>>> On Sun, Jan 16, 2011 at 7:53 AM, Olof Johansson <olof@lixom.net> wrote:
>>>> On Sun, Jan 16, 2011 at 2:21 AM, Lennert Buytenhek
>>>> <buytenh@wantstofly.org> wrote:
>>>>> On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:
>>>>>
>>>>>> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
>>>>>> conversion." missed changing one reference to 'irq' in the function
>>>>>> tegra_gpio_irq_set_type(). ?This patch fixes the build error.
>>>>>>
>>>>>> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>>>>
>>>>> Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>
>>>>
>>>> Acked-by: Olof Johansson <olof@lixom.net>
>>>>
>>>>> I built this queue against all defconfigs, but there doesn't seem to
>>>>> be one for tegra at the moment, which is why I missed this.
>>>>
>>>> Yep, planning on fixing this for .39.
>>>>
>>>>
>>>> -Olof
>>>>
>>>
>>> This should get fixed in .38. ?Has someone picked it up, or should I
>>> put it in through my tree?
>>
>> I don't think Olof picked it up (seeing as he only acked it and it's
>> not in Linus' tree). ?You should take it through your tree.
>
> Ping? ?I've not seen this hit Linus' tree yet. ?Do you want me to take
> care of it?

I confused your previous request for the struct clk patch with this
patch.  I just sent a pull request with both this and the struct clk
patch to Linus.

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

* [PATCH] arm/tegra: Fix tegra irq_data conversion
  2011-01-27  5:42           ` Colin Cross
@ 2011-01-27  6:02             ` Grant Likely
  0 siblings, 0 replies; 8+ messages in thread
From: Grant Likely @ 2011-01-27  6:02 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jan 26, 2011 at 10:42 PM, Colin Cross <ccross@android.com> wrote:
> On Wed, Jan 26, 2011 at 7:41 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
>> On Mon, Jan 17, 2011 at 3:49 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
>>> On Mon, Jan 17, 2011 at 3:17 PM, Colin Cross <ccross@android.com> wrote:
>>>> On Sun, Jan 16, 2011 at 7:53 AM, Olof Johansson <olof@lixom.net> wrote:
>>>>> On Sun, Jan 16, 2011 at 2:21 AM, Lennert Buytenhek
>>>>> <buytenh@wantstofly.org> wrote:
>>>>>> On Sat, Jan 15, 2011 at 10:41:27PM -0700, Grant Likely wrote:
>>>>>>
>>>>>>> Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data
>>>>>>> conversion." missed changing one reference to 'irq' in the function
>>>>>>> tegra_gpio_irq_set_type(). ?This patch fixes the build error.
>>>>>>>
>>>>>>> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>>>>>
>>>>>> Acked-by: Lennert Buytenhek <buytenh@secretlab.ca>
>>>>>
>>>>> Acked-by: Olof Johansson <olof@lixom.net>
>>>>>
>>>>>> I built this queue against all defconfigs, but there doesn't seem to
>>>>>> be one for tegra at the moment, which is why I missed this.
>>>>>
>>>>> Yep, planning on fixing this for .39.
>>>>>
>>>>>
>>>>> -Olof
>>>>>
>>>>
>>>> This should get fixed in .38. ?Has someone picked it up, or should I
>>>> put it in through my tree?
>>>
>>> I don't think Olof picked it up (seeing as he only acked it and it's
>>> not in Linus' tree). ?You should take it through your tree.
>>
>> Ping? ?I've not seen this hit Linus' tree yet. ?Do you want me to take
>> care of it?
>
> I confused your previous request for the struct clk patch with this
> patch. ?I just sent a pull request with both this and the struct clk
> patch to Linus.

Cool, thanks.

g.


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

end of thread, other threads:[~2011-01-27  6:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-16  5:41 [PATCH] arm/tegra: Fix tegra irq_data conversion Grant Likely
2011-01-16 10:21 ` Lennert Buytenhek
2011-01-16 15:53   ` Olof Johansson
2011-01-17 22:17     ` Colin Cross
2011-01-17 22:49       ` Grant Likely
2011-01-27  3:41         ` Grant Likely
2011-01-27  5:42           ` Colin Cross
2011-01-27  6:02             ` Grant Likely

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.