After updating to 3.2 Raspberian i had problems with my Logitech K400 wireless keybord/mouse wouldnt work when i powered up the RasPi, i needed to unplug and plug it back in for it to work.
The fix is simple.
Sudo nano /etc/rc.local
Add following text before "exit 0" but after "fi"
sleep 2
modprobe -r hid_logitech_dj
sleep 2
modprobe hid_logitech_dj
Ctrl+x ----> Y------> ENTER -----> sudo reboot
EDIT
After updating my pi (6 March 2013) i found that this workaround wasnt working.
The fix is again simple!
Sudo nano /etc/rc.local
Remove the workaround
"sleep 2
modprobe -r hid_logitech_dj
sleep 2
modprobe hid_logitech_dj"
Ctrl+x ----> Y------> ENTER -----> sudo reboot¨
Job DONE!