diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-09-09 17:03:17 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-09-09 17:03:17 +0200 |
commit | c40c4028f048a077a8950fd95e5d8901f773a63f (patch) | |
tree | 4d1abd711def0811b3c2af8e3c89322235bb9e10 /drivers/pwm/pwm-atmel-tcb.c | |
parent | 32dc5ca0c10c859e0e4fcc457e7c0a0c2c4b15ae (diff) | |
parent | d07a1ecdfb96b26dd665b54fee22fc7417b1cb08 (diff) | |
download | op-kernel-dev-c40c4028f048a077a8950fd95e5d8901f773a63f.zip op-kernel-dev-c40c4028f048a077a8950fd95e5d8901f773a63f.tar.gz |
Merge tag 'at91-cleanup2' of git://github.com/at91linux/linux-at91 into next/cleanup
Pull "Second batch of AT91 cleanup for 3.18" from Nicolas Ferre:
- Timer Counter (TC) fixup and cleanup:
- fix segmentation fault when kexec-ing a kernel by masking
TC interrupts at shutdown and probe time
- use modern driver model: devm_*, probe function, sanitize IRQ request
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
* tag 'at91-cleanup2' of git://github.com/at91linux/linux-at91:
clocksource: tcb_clksrc: sanitize IRQ request
ARM: at91/tclib: mask interruptions at shutdown and probe
ARM: at91/tclib: move initialization from alloc to probe
ARM: at91/tclib: prefer using of devm_* functions
Diffstat (limited to 'drivers/pwm/pwm-atmel-tcb.c')
-rw-r--r-- | drivers/pwm/pwm-atmel-tcb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-atmel-tcb.c b/drivers/pwm/pwm-atmel-tcb.c index f3dcd02..d56e5b7 100644 --- a/drivers/pwm/pwm-atmel-tcb.c +++ b/drivers/pwm/pwm-atmel-tcb.c @@ -379,7 +379,7 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) return err; } - tc = atmel_tc_alloc(tcblock, "tcb-pwm"); + tc = atmel_tc_alloc(tcblock); if (tc == NULL) { dev_err(&pdev->dev, "failed to allocate Timer Counter Block\n"); return -ENOMEM; |