[PATCH] USB: pci-quirks.c: proper prototypes
This patch adds a header file with proper prototypes for two functions in drivers/usb/host/pci-quirks.c. Signed-off-by: Adrian Bunk <bunk@stusta.de> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1ce7dd26e0
commit
75e2df603d
|
@ -15,6 +15,7 @@
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/acpi.h>
|
#include <linux/acpi.h>
|
||||||
|
#include "pci-quirks.h"
|
||||||
|
|
||||||
|
|
||||||
#define UHCI_USBLEGSUP 0xc0 /* legacy support */
|
#define UHCI_USBLEGSUP 0xc0 /* legacy support */
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
#ifndef __LINUX_USB_PCI_QUIRKS_H
|
||||||
|
#define __LINUX_USB_PCI_QUIRKS_H
|
||||||
|
|
||||||
|
void uhci_reset_hc(struct pci_dev *pdev, unsigned long base);
|
||||||
|
int uhci_check_and_reset_hc(struct pci_dev *pdev, unsigned long base);
|
||||||
|
|
||||||
|
#endif /* __LINUX_USB_PCI_QUIRKS_H */
|
|
@ -50,6 +50,7 @@
|
||||||
|
|
||||||
#include "../core/hcd.h"
|
#include "../core/hcd.h"
|
||||||
#include "uhci-hcd.h"
|
#include "uhci-hcd.h"
|
||||||
|
#include "pci-quirks.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Version Information
|
* Version Information
|
||||||
|
@ -100,9 +101,6 @@ static void uhci_get_current_frame_number(struct uhci_hcd *uhci);
|
||||||
#include "uhci-q.c"
|
#include "uhci-q.c"
|
||||||
#include "uhci-hub.c"
|
#include "uhci-hub.c"
|
||||||
|
|
||||||
extern void uhci_reset_hc(struct pci_dev *pdev, unsigned long base);
|
|
||||||
extern int uhci_check_and_reset_hc(struct pci_dev *pdev, unsigned long base);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Finish up a host controller reset and update the recorded state.
|
* Finish up a host controller reset and update the recorded state.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue