joycond icon indicating copy to clipboard operation
joycond copied to clipboard

Incorrect pathing for device

Open alkaris2 opened this issue 4 years ago • 7 comments

Joycond has incorrect pathing for the device;

Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: no match found for /sys//devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.0/0003:057E:2009.000C/input/input34>
Aug 29 20:52:23 tohru joycond[1173423]: driver_name: Nintendo Co., Ltd. Pro Controller
Aug 29 20:52:23 tohru joycond[1173423]: MAC: 000000000001
Aug 29 20:52:23 tohru joycond[1173423]: adding epoll_subscriber: fd=5

Why is there a double / in /sys//devices ?? This shouldn't be like that. How do I edit this to correct the path?

alkaris2 avatar Aug 29 '21 11:08 alkaris2

Anybody?

alkaris2 avatar Sep 19 '21 11:09 alkaris2

I'm also encountering the same issue.

marcothms avatar Jan 11 '22 10:01 marcothms

Same here.

xiaoxiae avatar Apr 23 '22 20:04 xiaoxiae

Also having this issue.

wakeupingear avatar May 23 '22 02:05 wakeupingear

I changed the source to replace "/sys/" with "/sys" in the devpath and recompiled, but the result was the same. This seems to be unrelated to the double slash. May 22 22:42:57 linux joycond[18410]: no match found for /sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003>

wakeupingear avatar May 23 '22 02:05 wakeupingear

For me it worked, and then stopped working with the same error

PSeitz avatar Jun 16 '22 14:06 PSeitz

Linux only cares about multiple slashes if you start a path with more than one. Otherwise they will be treated as one. Should it be avoided, sure, but it won't make any difference in this case.

infirit avatar Jun 16 '22 16:06 infirit