* published by the Free Software Foundation.
*/
+#define pr_fmt(fmt) "AT91: PIT: " fmt
+
#include <linux/clk.h>
#include <linux/clockchips.h>
#include <linux/interrupt.h>
/* Set up irq handler */
ret = setup_irq(at91sam926x_pit_irq.irq, &at91sam926x_pit_irq);
if (ret)
- panic("AT91: PIT: Unable to setup IRQ\n");
+ panic(pr_fmt("Unable to setup IRQ\n"));
/* Set up and register clockevents */
pit_clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, pit_clkevt.shift);
pit_base_addr = of_iomap(node, 0);
if (!pit_base_addr)
- panic("AT91: PIT: Could not map PIT address\n");
+ panic(pr_fmt("Could not map PIT address\n"));
mck = of_clk_get(node, 0);
if (IS_ERR(mck))
mck = clk_get(NULL, "mck");
if (IS_ERR(mck))
- panic("AT91: PIT: Unable to get mck clk\n");
+ panic(pr_fmt("Unable to get mck clk\n"));
/* Get the interrupts property */
irq = irq_of_parse_and_map(node, 0);
if (!irq)
- panic("AT91: PIT: Unable to get IRQ from DT\n");
+ panic(pr_fmt("Unable to get IRQ from DT\n"));
at91sam926x_pit_irq.irq = irq;
{
mck = clk_get(NULL, "mck");
if (IS_ERR(mck))
- panic("AT91: PIT: Unable to get mck clk\n");
+ panic(pr_fmt("Unable to get mck clk\n"));
at91sam926x_pit_irq.irq = NR_IRQS_LEGACY + AT91_ID_SYS;
pit_base_addr = ioremap(addr, 16);
if (!pit_base_addr)
- panic("Impossible to ioremap PIT\n");
+ panic(pr_fmt("Impossible to ioremap PIT\n"));
}