git: a85ff2114ccb - main - stand/usb: Fix build by declaring missing functions and types.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 17 Mar 2022 14:29:54 UTC
The branch main has been updated by hselasky: URL: https://cgit.FreeBSD.org/src/commit/?id=a85ff2114ccb751546f81ceb6b6d3244235363a1 commit a85ff2114ccb751546f81ceb6b6d3244235363a1 Author: Hans Petter Selasky <hselasky@FreeBSD.org> AuthorDate: 2022-03-17 14:14:17 +0000 Commit: Hans Petter Selasky <hselasky@FreeBSD.org> CommitDate: 2022-03-17 14:26:24 +0000 stand/usb: Fix build by declaring missing functions and types. MFC after: 1 week Sponsored by: NVIDIA Networking --- stand/kshim/bsd_kernel.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/stand/kshim/bsd_kernel.h b/stand/kshim/bsd_kernel.h index 808b1b078db5..a5653667da53 100644 --- a/stand/kshim/bsd_kernel.h +++ b/stand/kshim/bsd_kernel.h @@ -366,6 +366,7 @@ struct devclass; struct device; struct module; struct module_data; +struct sbuf; typedef struct driver driver_t; typedef struct devclass *devclass_t; @@ -387,6 +388,12 @@ typedef int gpio_pin_setflags_t (device_t dev, uint32_t, uint32_t); typedef int bus_child_location_str_t (device_t parent, device_t child, char *buf, size_t buflen); typedef int bus_child_pnpinfo_str_t (device_t parent, device_t child, char *buf, size_t buflen); +typedef int bus_child_location_t (device_t parent, device_t child, struct sbuf *); +typedef int bus_child_pnpinfo_t (device_t parent, device_t child, struct sbuf *); +typedef int bus_get_device_path_t (device_t bus, device_t child, const char *locator, struct sbuf *sb); + +#define bus_generic_get_device_path(...) EOPNOTSUPP + typedef void bus_driver_added_t (device_t dev, driver_t *driver); struct device_method { @@ -472,7 +479,10 @@ int devclass_get_maxunit(devclass_t dc); device_t devclass_get_device(devclass_t dc, int unit); devclass_t devclass_find(const char *classname); +#define BUS_LOCATOR_UEFI "UEFI" #define bus_get_dma_tag(...) (NULL) +#define bus_topo_lock(...) mtx_lock(&Giant) +#define bus_topo_unlock(...) mtx_unlock(&Giant) int bus_generic_detach(device_t dev); int bus_generic_resume(device_t dev); int bus_generic_shutdown(device_t dev); @@ -517,6 +527,7 @@ int memcmp(const void *, const void *, size_t len); int printf(const char *,...) __printflike(1, 2); int snprintf(char *restrict str, size_t size, const char *restrict format,...) __printflike(3, 4); size_t strlen(const char *s); +int strcmp(const char *, const char *); /* MALLOC API */ @@ -701,4 +712,7 @@ int bus_dmamap_load(bus_dma_tag_t, bus_dmamap_t, void *buf, void bus_dmamap_unload(bus_dma_tag_t, bus_dmamap_t); void bus_dmamap_sync(bus_dma_tag_t dmat, bus_dmamap_t map, int flags); +/* SBUF */ +#define sbuf_printf(...) do { } while (0) + #endif /* _BSD_KERNEL_H_ */