diff mbox series

[16/16] use xf86NameCmp() instead of xf86nameCompare()

Message ID 20250304155809.30399-17-info@metux.net (mailing list archive)
State New
Headers show
Series [01/16] meson.build: fix missing Xv dependencies | expand

Commit Message

Enrico Weigelt, metux IT consult March 4, 2025, 3:58 p.m. UTC
This driver is the only one still using xf86nameCompare() and so
blocking it's removal from Xserver module ABI.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
---
 src/intel_module.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.39.5
diff mbox series

Patch

diff --git a/src/intel_module.c b/src/intel_module.c
index 7ea0f5d3..f90b3cea 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -654,7 +654,7 @@  static XF86ConfDevicePtr
 _xf86findDriver(const char *ident, XF86ConfDevicePtr p)
 {
 	while (p) {
-		if (p->dev_driver && xf86nameCompare(ident, p->dev_driver) == 0)
+		if (p->dev_driver && xf86NameCmp(ident, p->dev_driver) == 0)
 			return p;

 		p = p->list.next;