Re: [PATCH] at91: pmc: Fixed irq's name allocation for programmable clocks

2014-02-03 Thread boris brezillon
Hello JJ, On 03/02/2014 17:46, Jean-Jacques Hiblot wrote: The name provided to request_irq() must be valid until the irq is released. This patch allocates and formats the string with kasprintf(). Thanks for reporting this bug. Signed-off-by: Jean-Jacques Hiblot ---

[PATCH] at91: pmc: Fixed irq's name allocation for programmable clocks

2014-02-03 Thread Jean-Jacques Hiblot
The name provided to request_irq() must be valid until the irq is released. This patch allocates and formats the string with kasprintf(). Signed-off-by: Jean-Jacques Hiblot --- drivers/clk/at91/clk-programmable.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git

[PATCH] at91: pmc: Fixed irq's name allocation for programmable clocks

2014-02-03 Thread Jean-Jacques Hiblot
The name provided to request_irq() must be valid until the irq is released. This patch allocates and formats the string with kasprintf(). Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com --- drivers/clk/at91/clk-programmable.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)

Re: [PATCH] at91: pmc: Fixed irq's name allocation for programmable clocks

2014-02-03 Thread boris brezillon
Hello JJ, On 03/02/2014 17:46, Jean-Jacques Hiblot wrote: The name provided to request_irq() must be valid until the irq is released. This patch allocates and formats the string with kasprintf(). Thanks for reporting this bug. Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com ---