[PATCH] dvb: ttpci: kj printk fix
printk() calls should include appropriate KERN_* constant. Signed-off-by: Christophe Lucas <clucas@rotomalug.org> Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
34612157b4
commit
80887a59c2
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ int av7110_ipack_init(struct ipack *p, int size,
|
|||
void (*func)(u8 *buf, int size, void *priv))
|
||||
{
|
||||
if (!(p->buf = vmalloc(size*sizeof(u8)))) {
|
||||
printk ("Couldn't allocate memory for ipack\n");
|
||||
printk(KERN_WARNING "Couldn't allocate memory for ipack\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
p->size = size;
|
||||
|
|
Loading…
Reference in a new issue