Rename usbkbd to usbhcd to better reflect the new design.

This commit is contained in:
Martin Whitaker 2022-01-08 23:14:50 +00:00
parent 52a87c5d40
commit 4400ec6f17
10 changed files with 10 additions and 12 deletions

View File

@ -25,7 +25,7 @@
#include "pmem.h"
#include "screen.h"
#include "smp.h"
#include "usbkbd.h"
#include "usbhcd.h"
#include "read.h"
#include "print.h"

View File

@ -18,7 +18,7 @@ SYS_OBJS = system/cpuid.o \
system/screen.o \
system/smp.o \
system/temperature.o \
system/usbkbd.o \
system/usbhcd.o \
system/vmem.o \
system/xhci.o

View File

@ -18,7 +18,7 @@ SYS_OBJS = system/cpuid.o \
system/screen.o \
system/smp.o \
system/temperature.o \
system/usbkbd.o \
system/usbhcd.o \
system/vmem.o \
system/xhci.o

View File

@ -4,7 +4,7 @@
#include <stdint.h>
#include "io.h"
#include "usbkbd.h"
#include "usbhcd.h"
#include "keyboard.h"

View File

@ -11,7 +11,6 @@
#include "memory.h"
#include "unistd.h"
#include "usbkbd.h"
#include "usb.h"
#include "ohci.h"

View File

@ -9,7 +9,7 @@
#include <stdint.h>
#include "usbkbd.h"
#include "usbhcd.h"
/*
* Initialises the OHCI device found at base_addr, scans all the attached USB

View File

@ -14,7 +14,7 @@
#include "print.h"
#include "unistd.h"
#include "usbkbd.h"
#include "usbhcd.h"
//------------------------------------------------------------------------------
// Constants

View File

@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
#ifndef USBKBD_H
#define USBKBD_H
#ifndef USBHCD_H
#define USBHCD_H
/*
* Provides the base USB host controller driver for USB keyboard support.
*
@ -254,4 +254,4 @@ void find_usb_keyboards(bool pause_at_end);
*/
uint8_t get_usb_keycode(void);
#endif // USBKBD_H
#endif // USBHCD_H

View File

@ -10,7 +10,6 @@
#include "memory.h"
#include "unistd.h"
#include "usbkbd.h"
#include "usb.h"
#include "xhci.h"

View File

@ -9,7 +9,7 @@
#include <stdint.h>
#include "usbkbd.h"
#include "usbhcd.h"
/*
* Initialises the XHCI device found at base_addr, scans all the attached USB