mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 01:32:21 +02:00
fbdev: sunxvr2500: replace printk with device-aware logging functions
Replace all printk() calls with appropriate device-aware logging functions to properly associate log messages with the PCI device. - Use pci_err() for errors where struct pci_dev is available - Use pci_info() for info messages where struct pci_dev is available Remove redundant 's3d:' prefix and pci_name() calls as device-aware functions include device identification automatically. Assisted-by: Claude:claude-sonnet-4-6 Signed-off-by: Rahman Mahmutović <mahmutovicrahman5@gmail.com> Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
70d9d5f5fc
commit
537cd3082b
|
|
@ -38,8 +38,7 @@ static int s3d_get_props(struct s3d_info *sp)
|
|||
sp->depth = of_getintprop_default(sp->of_node, "depth", 8);
|
||||
|
||||
if (!sp->width || !sp->height) {
|
||||
printk(KERN_ERR "s3d: Critical properties missing for %s\n",
|
||||
pci_name(sp->pdev));
|
||||
pci_err(sp->pdev, "Critical properties missing\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
|
@ -107,7 +106,7 @@ static int s3d_set_fbinfo(struct s3d_info *sp)
|
|||
var->transp.length = 0;
|
||||
|
||||
if (fb_alloc_cmap(&info->cmap, 256, 0)) {
|
||||
printk(KERN_ERR "s3d: Cannot allocate color map.\n");
|
||||
pci_err(sp->pdev, "Cannot allocate color map\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
|
@ -127,8 +126,7 @@ static int s3d_pci_register(struct pci_dev *pdev,
|
|||
|
||||
err = pci_enable_device(pdev);
|
||||
if (err < 0) {
|
||||
printk(KERN_ERR "s3d: Cannot enable PCI device %s\n",
|
||||
pci_name(pdev));
|
||||
pci_err(pdev, "Cannot enable PCI device\n");
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
|
|
@ -143,8 +141,7 @@ static int s3d_pci_register(struct pci_dev *pdev,
|
|||
sp->pdev = pdev;
|
||||
sp->of_node = pci_device_to_OF_node(pdev);
|
||||
if (!sp->of_node) {
|
||||
printk(KERN_ERR "s3d: Cannot find OF node of %s\n",
|
||||
pci_name(pdev));
|
||||
pci_err(pdev, "Cannot find OF node\n");
|
||||
err = -ENODEV;
|
||||
goto err_release_fb;
|
||||
}
|
||||
|
|
@ -153,8 +150,7 @@ static int s3d_pci_register(struct pci_dev *pdev,
|
|||
|
||||
err = pci_request_region(pdev, 1, "s3d framebuffer");
|
||||
if (err < 0) {
|
||||
printk("s3d: Cannot request region 1 for %s\n",
|
||||
pci_name(pdev));
|
||||
pci_err(pdev, "Cannot request region 1\n");
|
||||
goto err_release_fb;
|
||||
}
|
||||
|
||||
|
|
@ -194,12 +190,11 @@ static int s3d_pci_register(struct pci_dev *pdev,
|
|||
|
||||
pci_set_drvdata(pdev, info);
|
||||
|
||||
printk("s3d: Found device at %s\n", pci_name(pdev));
|
||||
pci_info(pdev, "Found device\n");
|
||||
|
||||
err = register_framebuffer(info);
|
||||
if (err < 0) {
|
||||
printk(KERN_ERR "s3d: Could not register framebuffer %s\n",
|
||||
pci_name(pdev));
|
||||
pci_err(pdev, "Could not register framebuffer\n");
|
||||
goto err_unmap_fb;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user