Skip to content

Commit

Permalink
sparc: video drivers: add facility level
Browse files Browse the repository at this point in the history
Add KERN_ facility level to sparc video drivers.

Signed-off-by: Robert Reif <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
IOBYTE authored and davem330 committed Apr 27, 2008
1 parent f36861d commit 194f1a6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion drivers/video/bw2.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ static int __devinit bw2_probe(struct of_device *op, const struct of_device_id *

dev_set_drvdata(&op->dev, info);

printk("%s: bwtwo at %lx:%lx\n",
printk(KERN_INFO "%s: bwtwo at %lx:%lx\n",
dp->full_name, par->which_io, par->physbase);

return 0;
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/cg14.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ static int __devinit cg14_probe(struct of_device *op, const struct of_device_id

dev_set_drvdata(&op->dev, info);

printk("%s: cgfourteen at %lx:%lx, %dMB\n",
printk(KERN_INFO "%s: cgfourteen at %lx:%lx, %dMB\n",
dp->full_name,
par->iospace, par->physbase,
par->ramsize >> 20);
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/cg3.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ static int __devinit cg3_probe(struct of_device *op,

dev_set_drvdata(&op->dev, info);

printk("%s: cg3 at %lx:%lx\n",
printk(KERN_INFO "%s: cg3 at %lx:%lx\n",
dp->full_name, par->which_io, par->physbase);

return 0;
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/cg6.c
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ static int __devinit cg6_probe(struct of_device *op,

dev_set_drvdata(&op->dev, info);

printk("%s: CGsix [%s] at %lx:%lx\n",
printk(KERN_INFO "%s: CGsix [%s] at %lx:%lx\n",
dp->full_name, info->fix.id,
par->which_io, par->physbase);

Expand Down
2 changes: 1 addition & 1 deletion drivers/video/ffb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ static int __devinit ffb_probe(struct of_device *op,

dev_set_drvdata(&op->dev, info);

printk("%s: %s at %016lx, type %d, "
printk(KERN_INFO "%s: %s at %016lx, type %d, "
"DAC pnum[%x] rev[%d] manuf_rev[%d]\n",
dp->full_name,
((par->flags & FFB_FLAG_AFB) ? "AFB" : "FFB"),
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/leo.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ static int __devinit leo_probe(struct of_device *op, const struct of_device_id *

dev_set_drvdata(&op->dev, info);

printk("%s: leo at %lx:%lx\n",
printk(KERN_INFO "%s: leo at %lx:%lx\n",
dp->full_name,
par->which_io, par->physbase);

Expand Down
2 changes: 1 addition & 1 deletion drivers/video/p9100.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ static int __devinit p9100_probe(struct of_device *op, const struct of_device_id

dev_set_drvdata(&op->dev, info);

printk("%s: p9100 at %lx:%lx\n",
printk(KERN_INFO "%s: p9100 at %lx:%lx\n",
dp->full_name,
par->which_io, par->physbase);

Expand Down
2 changes: 1 addition & 1 deletion drivers/video/tcx.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ static int __devinit tcx_init_one(struct of_device *op)

dev_set_drvdata(&op->dev, info);

printk("%s: TCX at %lx:%lx, %s\n",
printk(KERN_INFO "%s: TCX at %lx:%lx, %s\n",
dp->full_name,
par->which_io,
par->physbase,
Expand Down

0 comments on commit 194f1a6

Please sign in to comment.