mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-11 05:22:40 -04:00
24 lines
734 B
C
24 lines
734 B
C
/***************************************************************************
|
|
*
|
|
* devinfo_usb.h : definitions for USB devices
|
|
*
|
|
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
|
|
* Use is subject to license terms.
|
|
*
|
|
* Licensed under the Academic Free License version 2.1
|
|
*
|
|
**************************************************************************/
|
|
|
|
#ifndef DEVINFO_USB_H
|
|
#define DEVINFO_USB_H
|
|
|
|
#include "devinfo.h"
|
|
|
|
#define bcd(a) ((((a) & 0xf000) >> 12) * 1000 + (((a) & 0xf00) >> 8) * 100 + (((a) & 0xf0) >> 4) * 10 + ((a) & 0xf))
|
|
|
|
extern DevinfoDevHandler devinfo_usb_handler;
|
|
|
|
HalDevice *devinfo_usb_add(HalDevice *parent, const char *devnode, char *devfs_path, char *device_type);
|
|
|
|
#endif /* DEVINFO_USB_H */
|