[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20251005173812.1169436-1-rampxxxx@gmail.com>
Date: Sun, 5 Oct 2025 19:38:12 +0200
From: Javier Garcia <rampxxxx@...il.com>
To: deller@....de,
u.kleine-koenig@...libre.com,
tzimmermann@...e.de
Cc: linux-fbdev@...r.kernel.org,
dri-devel@...ts.freedesktop.org,
linux-kernel@...r.kernel.org,
shuah@...nel.org,
Javier Garcia <rampxxxx@...il.com>
Subject: [PATCH] fbdev: mb862xxfbdrv: Make CONFIG_FB_DEVICE optional
This patch wraps the relevant code blocks with #ifdef CONFIG_FB_DEVICE,
allowing the driver to be built and used even if CONFIG_FB_DEVICE is not selected.
The sysfs only give access to show some controller and cursor registers so
it's not needed to allow driver works correctly.
Signed-off-by: Javier Garcia <rampxxxx@...il.com>
---
drivers/video/fbdev/mb862xx/mb862xxfbdrv.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/video/fbdev/mb862xx/mb862xxfbdrv.c b/drivers/video/fbdev/mb862xx/mb862xxfbdrv.c
index ade88e7bc760..a691a5fefb25 100644
--- a/drivers/video/fbdev/mb862xx/mb862xxfbdrv.c
+++ b/drivers/video/fbdev/mb862xx/mb862xxfbdrv.c
@@ -530,6 +530,7 @@ static int mb862xxfb_init_fbinfo(struct fb_info *fbi)
return 0;
}
+#ifdef CONFIG_FB_DEVICE
/*
* show some display controller and cursor registers
*/
@@ -569,6 +570,7 @@ static ssize_t dispregs_show(struct device *dev,
}
static DEVICE_ATTR_RO(dispregs);
+#endif
static irqreturn_t mb862xx_intr(int irq, void *dev_id)
{
@@ -759,9 +761,11 @@ static int of_platform_mb862xx_probe(struct platform_device *ofdev)
dev_set_drvdata(dev, info);
+#ifdef CONFIG_FB_DEVICE
if (device_create_file(dev, &dev_attr_dispregs))
dev_err(dev, "Can't create sysfs regdump file\n");
return 0;
+#endif
rel_cmap:
fb_dealloc_cmap(&info->cmap);
@@ -801,7 +805,9 @@ static void of_platform_mb862xx_remove(struct platform_device *ofdev)
free_irq(par->irq, (void *)par);
irq_dispose_mapping(par->irq);
+#ifdef CONFIG_FB_DEVICE
device_remove_file(&ofdev->dev, &dev_attr_dispregs);
+#endif
unregister_framebuffer(fbi);
fb_dealloc_cmap(&fbi->cmap);
@@ -1101,8 +1107,10 @@ static int mb862xx_pci_probe(struct pci_dev *pdev,
pci_set_drvdata(pdev, info);
+#ifdef CONFIG_FB_DEVICE
if (device_create_file(dev, &dev_attr_dispregs))
dev_err(dev, "Can't create sysfs regdump file\n");
+#endif
if (par->type == BT_CARMINE)
outreg(ctrl, GC_CTRL_INT_MASK, GC_CARMINE_INT_EN);
@@ -1151,7 +1159,9 @@ static void mb862xx_pci_remove(struct pci_dev *pdev)
mb862xx_i2c_exit(par);
+#ifdef CONFIG_FB_DEVICE
device_remove_file(&pdev->dev, &dev_attr_dispregs);
+#endif
unregister_framebuffer(fbi);
fb_dealloc_cmap(&fbi->cmap);
--
2.50.1
Powered by blists - more mailing lists