Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56109
b: refs/heads/master
c: 62e96a1
h: refs/heads/master
i:
  56107: 279e15d
v: v3
  • Loading branch information
vignesh babu authored and Jaroslav Kysela committed May 11, 2007
1 parent e6d7dc2 commit 1c76169
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac519028a4e7b919eaff65a1535824259df326c6
refs/heads/master: 62e96a1caab86e0d3688d59fcb6f682cc52d4917
3 changes: 2 additions & 1 deletion trunk/sound/core/rtctimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/moduleparam.h>
#include <linux/log2.h>
#include <sound/core.h>
#include <sound/timer.h>

Expand Down Expand Up @@ -129,7 +130,7 @@ static int __init rtctimer_init(void)
struct snd_timer *timer;

if (rtctimer_freq < 2 || rtctimer_freq > 8192 ||
(rtctimer_freq & (rtctimer_freq - 1)) != 0) {
!is_power_of_2(rtctimer_freq)) {
snd_printk(KERN_ERR "rtctimer: invalid frequency %d\n",
rtctimer_freq);
return -EINVAL;
Expand Down

0 comments on commit 1c76169

Please sign in to comment.