Changeset 7fc092a in mainline for uspace/drv/usbkbd/descparser.h


Ignore:
Timestamp:
2011-01-27T22:09:29Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
db7ed07
Parents:
9ee87f6 (diff), 6265a2b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Changes from development branch

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbkbd/descparser.h

    r9ee87f6 r7fc092a  
    11/*
    2  * Copyright (c) 2009 Lukas Mejdrech
     2 * Copyright (c) 2010 Lubos Slovak
    33 * All rights reserved.
    44 *
     
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28 
    29 /** @addtogroup ip
     28/** @addtogroup drvusbhid
    3029 * @{
    3130 */
    3231
    33 /** @file
    34  * IP module functions.
    35  * The functions are used as IP module entry points.
    36  */
     32#ifndef USBHID_DESCPARSER_H_
     33#define USBHID_DESCPARSER_H_
    3734
    38 #ifndef NET_IP_MODULE_H_
    39 #define NET_IP_MODULE_H_
     35#include <usb/classes/hid.h>
    4036
    41 #include <ipc/ipc.h>
     37int usbkbd_parse_descriptors(const uint8_t *data, size_t size,
     38                             usb_hid_configuration_t *config);
    4239
    43 extern int ip_initialize(async_client_conn_t);
    44 extern int ip_message_standalone(ipc_callid_t, ipc_call_t *, ipc_call_t *,
    45     size_t *);
     40void usbkbd_print_config(const usb_hid_configuration_t *config);
    4641
    4742#endif
    4843
    49 /** @}
     44/**
     45 * @}
    5046 */
Note: See TracChangeset for help on using the changeset viewer.