FAQ
From DWIKI
FAQ for things i can't find category for
slow mouse/keyboard on Latitude
I ran into problem of very choppy/slow mouse and keyboard on a Dell Latitude, and found solution at https://iniy.org/?p=419&cpage=1#comment-46977
and wrote a oneliner that will reset the right drivers:
lspci | grep -i usb| awk '{ print $1 }' | while read ID;do ID="0000:$ID";DR=`find /sys/bus/pci/drivers/ -name $ID`;P=${DR%%$ID};echo -n $ID > $P/unbind;echo -n $ID > $P/bind;done