Changeset e8c1fb0 in mainline
- Timestamp:
- 2011-03-10T15:16:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77ab674
- Parents:
- 7309799
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/kbddev.c
r7309799 re8c1fb0 759 759 usb_log_warning("Failed to start a session: %s.\n", 760 760 str_error(sess_rc)); 761 continue;761 break; 762 762 } 763 763 … … 771 771 usb_log_warning("Error polling the keyboard: %s.\n", 772 772 str_error(rc)); 773 continue;773 break; 774 774 } 775 775 … … 777 777 usb_log_warning("Error closing session: %s.\n", 778 778 str_error(sess_rc)); 779 continue;779 break; 780 780 } 781 781 … … 798 798 //async_usleep(kbd_dev->hid_dev->poll_interval); 799 799 } 800 801 // not reached802 assert(0);803 800 } 804 801
Note:
See TracChangeset
for help on using the changeset viewer.