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 <i...@metux.net>
---
 src/intel_module.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
--
2.39.5

Reply via email to