Skip to content

Commit

Permalink
sound: Use KERN_WARNING instead of KERN_WARN, which does not exist
Browse files Browse the repository at this point in the history
Reported-by: Andrew Lyon <[email protected]>
Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
rddunlap authored and tiwai committed Nov 5, 2009
1 parent 7e6c398 commit f702cf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sound/oss/sb_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ static void sb_intr (sb_devc *devc)
break;

default:
/* printk(KERN_WARN "Sound Blaster: Unexpected interrupt\n"); */
/* printk(KERN_WARNING "Sound Blaster: Unexpected interrupt\n"); */
;
}
}
Expand All @@ -177,7 +177,7 @@ static void sb_intr (sb_devc *devc)
break;

default:
/* printk(KERN_WARN "Sound Blaster: Unexpected interrupt\n"); */
/* printk(KERN_WARNING "Sound Blaster: Unexpected interrupt\n"); */
;
}
}
Expand Down
2 changes: 1 addition & 1 deletion sound/oss/sb_ess.c
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ printk(KERN_INFO "FKS: ess_handle_channel %s irq_mode=%d\n", channel, irq_mode);
break;

default:;
/* printk(KERN_WARN "ESS: Unexpected interrupt\n"); */
/* printk(KERN_WARNING "ESS: Unexpected interrupt\n"); */
}
}

Expand Down

0 comments on commit f702cf4

Please sign in to comment.