X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FUSB%2FCore%2Fmain.c;h=712f6028f2b3fbdd6503dcfda4061c63828e4f35;hb=9478f322c2b506fe9b3afc2e70ad67fefc8ee698;hp=5744c29d02cd140b9f51017b54e643edb54c22c4;hpb=775bf8013abe9fe4ef3d4883ea2e43bba2a84da1;p=tpg%2Facess2.git diff --git a/Modules/USB/Core/main.c b/Modules/USB/Core/main.c index 5744c29d..712f6028 100644 --- a/Modules/USB/Core/main.c +++ b/Modules/USB/Core/main.c @@ -11,17 +11,17 @@ #include "usb.h" // === IMPORTS === - int UHCI_Initialise(); +extern int UHCI_Initialise(void); // === PROTOTYPES === int USB_Install(char **Arguments); -void USB_Cleanup(); +void USB_Cleanup(void); char *USB_ReadDir(tVFS_Node *Node, int Pos); -tVFS_Node *USB_FindDir(tVFS_Node *Node, char *Name); +tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name); int USB_IOCtl(tVFS_Node *Node, int Id, void *Data); // === GLOBALS === -MODULE_DEFINE(0, VERSION, USB, USB_Install, NULL, NULL); +MODULE_DEFINE(0, VERSION, USB_Core, USB_Install, NULL, NULL); tDevFS_Driver gUSB_DrvInfo = { NULL, "usb", { .NumACLs = 1, @@ -43,7 +43,7 @@ tUSBHost *gUSB_Hosts = NULL; int USB_Install(char **Arguments) { UHCI_Initialise(); - Warning("[USB ] Not Complete - Devel Only"); + Log_Warning("USB", "Not Complete - Devel Only"); return MODULE_ERR_OK; } @@ -65,10 +65,10 @@ char *USB_ReadDir(tVFS_Node *Node, int Pos) } /** - * \fn tVFS_Node *USB_FindDir(tVFS_Node *Node, char *Name) + * \fn tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name) * \brief Locate an entry in the USB root */ -tVFS_Node *USB_FindDir(tVFS_Node *Node, char *Name) +tVFS_Node *USB_FindDir(tVFS_Node *Node, const char *Name) { return NULL; }