Take a look at the man and info pages for mknod. You have to create the node.
You have the clues you need above. It's a character device,
named /dev/usb/hid/hiddev0, the major number is 180 and the minor number is
96.
Therefore, as root run this command:
mknod /dev/usb/hid/hiddev0 c 180 96
Please do the reading first to be sure you know what you're doing.
HTH,
Tom
Thanks for your help. In my case would it be /dev/usb/hid/hiddev96 since
thats what I saw in the log? Thats where I was confused. If 180 96 is
hiddev0 then how am I to know what hiddev96 is?