staging: usbip: userspace: usbip_common.h: fixup header includes

Remove unnecessary headers from the file, and add the now missing
headers into the files that actually need them.

Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
matt mooney 2011-06-19 22:44:34 -07:00 committed by Greg Kroah-Hartman
parent 93e18e0ece
commit 4fd83e84d5
3 changed files with 14 additions and 13 deletions

View File

@ -4,6 +4,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <unistd.h>
#include "usbip.h"

View File

@ -2,20 +2,18 @@
* Copyright (C) 2005-2007 Takahiro Hirofuchi
*/
#ifndef _USBIP_COMMON_H
#define _USBIP_COMMON_H
#include <unistd.h>
#include <stdint.h>
#include <syslog.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#ifndef __USBIP_COMMON_H
#define __USBIP_COMMON_H
#include <sysfs/libsysfs.h>
#include <netdb.h>
#include <sys/socket.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
#ifndef USBIDS_FILE
#define USBIDS_FILE "/usr/share/hwdata/usb.ids"
@ -146,4 +144,4 @@ void usbip_names_free(void);
void usbip_names_get_product(char *buff, size_t size, uint16_t vendor, uint16_t product);
void usbip_names_get_class(char *buff, size_t size, uint8_t class, uint8_t subclass, uint8_t protocol);
#endif
#endif /* __USBIP_COMMON_H */

View File

@ -6,6 +6,7 @@
#include <sysfs/libsysfs.h>
#include <limits.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>