Changeset a84ddf0 in mainline for uspace/drv/char/xtkbd/main.c


Ignore:
Timestamp:
2011-12-27T11:11:01Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bff90ba
Parents:
336f03b
Message:

xtkbd: Doxygen.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/xtkbd/main.c

    r336f03b ra84ddf0  
    4747
    4848static int xt_kbd_add(ddf_dev_t *device);
    49 
     49/*----------------------------------------------------------------------------*/
     50/** DDF driver ops. */
    5051static driver_ops_t kbd_driver_ops = {
    5152        .dev_add = xt_kbd_add,
    5253};
    53 
     54/*----------------------------------------------------------------------------*/
     55/** DDF driver structure. */
    5456static driver_t kbd_driver = {
    5557        .name = NAME,
    5658        .driver_ops = &kbd_driver_ops
    5759};
    58 
     60/*----------------------------------------------------------------------------*/
    5961/** Initialize global driver structures (NONE).
    6062 *
     
    6870{
    6971        printf(NAME ": HelenOS XT keyboard driver.\n");
    70         ddf_log_init(NAME, LVL_DEBUG2);
     72        ddf_log_init(NAME, LVL_NOTE);
    7173        return ddf_driver_main(&kbd_driver);
    7274}
    73 
     75/*----------------------------------------------------------------------------*/
    7476/** Initialize a new ddf driver instance of the driver
    7577 *
Note: See TracChangeset for help on using the changeset viewer.