From 68f0fc6f80337b69c02b787d121a1f43ee472876 Mon Sep 17 00:00:00 2001 From: Filippo Mutta Date: Tue, 30 Sep 2025 22:48:28 +0200 Subject: [PATCH] USB: reorganised directory structure. --- {usbctl => usb/usbctl}/.gitignore | 0 {usbctl => usb/usbctl}/Cargo.toml | 0 {usbctl => usb/usbctl}/src/main.rs | 0 {usbhubd => usb/usbhubd}/.gitignore | 0 {usbhubd => usb/usbhubd}/Cargo.toml | 0 {usbhubd => usb/usbhubd}/src/main.rs | 0 {xhcid => usb/xhcid}/.gitignore | 0 {xhcid => usb/xhcid}/Cargo.toml | 0 {xhcid => usb/xhcid}/config.toml | 0 {xhcid => usb/xhcid}/drivers.toml | 0 {xhcid => usb/xhcid}/src/driver_interface.rs | 0 {xhcid => usb/xhcid}/src/lib.rs | 0 {xhcid => usb/xhcid}/src/main.rs | 0 {xhcid => usb/xhcid}/src/usb/bos.rs | 0 {xhcid => usb/xhcid}/src/usb/config.rs | 0 {xhcid => usb/xhcid}/src/usb/device.rs | 0 {xhcid => usb/xhcid}/src/usb/endpoint.rs | 0 {xhcid => usb/xhcid}/src/usb/hub.rs | 0 {xhcid => usb/xhcid}/src/usb/interface.rs | 0 {xhcid => usb/xhcid}/src/usb/mod.rs | 0 {xhcid => usb/xhcid}/src/usb/setup.rs | 0 {xhcid => usb/xhcid}/src/xhci/capability.rs | 0 {xhcid => usb/xhcid}/src/xhci/context.rs | 0 {xhcid => usb/xhcid}/src/xhci/device_enumerator.rs | 0 {xhcid => usb/xhcid}/src/xhci/doorbell.rs | 0 {xhcid => usb/xhcid}/src/xhci/event.rs | 0 {xhcid => usb/xhcid}/src/xhci/extended.rs | 0 {xhcid => usb/xhcid}/src/xhci/irq_reactor.rs | 0 {xhcid => usb/xhcid}/src/xhci/mod.rs | 0 {xhcid => usb/xhcid}/src/xhci/operational.rs | 0 {xhcid => usb/xhcid}/src/xhci/port.rs | 0 {xhcid => usb/xhcid}/src/xhci/ring.rs | 0 {xhcid => usb/xhcid}/src/xhci/runtime.rs | 0 {xhcid => usb/xhcid}/src/xhci/scheme.rs | 0 {xhcid => usb/xhcid}/src/xhci/trb.rs | 0 35 files changed, 0 insertions(+), 0 deletions(-) rename {usbctl => usb/usbctl}/.gitignore (100%) rename {usbctl => usb/usbctl}/Cargo.toml (100%) rename {usbctl => usb/usbctl}/src/main.rs (100%) rename {usbhubd => usb/usbhubd}/.gitignore (100%) rename {usbhubd => usb/usbhubd}/Cargo.toml (100%) rename {usbhubd => usb/usbhubd}/src/main.rs (100%) rename {xhcid => usb/xhcid}/.gitignore (100%) rename {xhcid => usb/xhcid}/Cargo.toml (100%) rename {xhcid => usb/xhcid}/config.toml (100%) rename {xhcid => usb/xhcid}/drivers.toml (100%) rename {xhcid => usb/xhcid}/src/driver_interface.rs (100%) rename {xhcid => usb/xhcid}/src/lib.rs (100%) rename {xhcid => usb/xhcid}/src/main.rs (100%) rename {xhcid => usb/xhcid}/src/usb/bos.rs (100%) rename {xhcid => usb/xhcid}/src/usb/config.rs (100%) rename {xhcid => usb/xhcid}/src/usb/device.rs (100%) rename {xhcid => usb/xhcid}/src/usb/endpoint.rs (100%) rename {xhcid => usb/xhcid}/src/usb/hub.rs (100%) rename {xhcid => usb/xhcid}/src/usb/interface.rs (100%) rename {xhcid => usb/xhcid}/src/usb/mod.rs (100%) rename {xhcid => usb/xhcid}/src/usb/setup.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/capability.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/context.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/device_enumerator.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/doorbell.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/event.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/extended.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/irq_reactor.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/mod.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/operational.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/port.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/ring.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/runtime.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/scheme.rs (100%) rename {xhcid => usb/xhcid}/src/xhci/trb.rs (100%) diff --git a/usbctl/.gitignore b/usb/usbctl/.gitignore similarity index 100% rename from usbctl/.gitignore rename to usb/usbctl/.gitignore diff --git a/usbctl/Cargo.toml b/usb/usbctl/Cargo.toml similarity index 100% rename from usbctl/Cargo.toml rename to usb/usbctl/Cargo.toml diff --git a/usbctl/src/main.rs b/usb/usbctl/src/main.rs similarity index 100% rename from usbctl/src/main.rs rename to usb/usbctl/src/main.rs diff --git a/usbhubd/.gitignore b/usb/usbhubd/.gitignore similarity index 100% rename from usbhubd/.gitignore rename to usb/usbhubd/.gitignore diff --git a/usbhubd/Cargo.toml b/usb/usbhubd/Cargo.toml similarity index 100% rename from usbhubd/Cargo.toml rename to usb/usbhubd/Cargo.toml diff --git a/usbhubd/src/main.rs b/usb/usbhubd/src/main.rs similarity index 100% rename from usbhubd/src/main.rs rename to usb/usbhubd/src/main.rs diff --git a/xhcid/.gitignore b/usb/xhcid/.gitignore similarity index 100% rename from xhcid/.gitignore rename to usb/xhcid/.gitignore diff --git a/xhcid/Cargo.toml b/usb/xhcid/Cargo.toml similarity index 100% rename from xhcid/Cargo.toml rename to usb/xhcid/Cargo.toml diff --git a/xhcid/config.toml b/usb/xhcid/config.toml similarity index 100% rename from xhcid/config.toml rename to usb/xhcid/config.toml diff --git a/xhcid/drivers.toml b/usb/xhcid/drivers.toml similarity index 100% rename from xhcid/drivers.toml rename to usb/xhcid/drivers.toml diff --git a/xhcid/src/driver_interface.rs b/usb/xhcid/src/driver_interface.rs similarity index 100% rename from xhcid/src/driver_interface.rs rename to usb/xhcid/src/driver_interface.rs diff --git a/xhcid/src/lib.rs b/usb/xhcid/src/lib.rs similarity index 100% rename from xhcid/src/lib.rs rename to usb/xhcid/src/lib.rs diff --git a/xhcid/src/main.rs b/usb/xhcid/src/main.rs similarity index 100% rename from xhcid/src/main.rs rename to usb/xhcid/src/main.rs diff --git a/xhcid/src/usb/bos.rs b/usb/xhcid/src/usb/bos.rs similarity index 100% rename from xhcid/src/usb/bos.rs rename to usb/xhcid/src/usb/bos.rs diff --git a/xhcid/src/usb/config.rs b/usb/xhcid/src/usb/config.rs similarity index 100% rename from xhcid/src/usb/config.rs rename to usb/xhcid/src/usb/config.rs diff --git a/xhcid/src/usb/device.rs b/usb/xhcid/src/usb/device.rs similarity index 100% rename from xhcid/src/usb/device.rs rename to usb/xhcid/src/usb/device.rs diff --git a/xhcid/src/usb/endpoint.rs b/usb/xhcid/src/usb/endpoint.rs similarity index 100% rename from xhcid/src/usb/endpoint.rs rename to usb/xhcid/src/usb/endpoint.rs diff --git a/xhcid/src/usb/hub.rs b/usb/xhcid/src/usb/hub.rs similarity index 100% rename from xhcid/src/usb/hub.rs rename to usb/xhcid/src/usb/hub.rs diff --git a/xhcid/src/usb/interface.rs b/usb/xhcid/src/usb/interface.rs similarity index 100% rename from xhcid/src/usb/interface.rs rename to usb/xhcid/src/usb/interface.rs diff --git a/xhcid/src/usb/mod.rs b/usb/xhcid/src/usb/mod.rs similarity index 100% rename from xhcid/src/usb/mod.rs rename to usb/xhcid/src/usb/mod.rs diff --git a/xhcid/src/usb/setup.rs b/usb/xhcid/src/usb/setup.rs similarity index 100% rename from xhcid/src/usb/setup.rs rename to usb/xhcid/src/usb/setup.rs diff --git a/xhcid/src/xhci/capability.rs b/usb/xhcid/src/xhci/capability.rs similarity index 100% rename from xhcid/src/xhci/capability.rs rename to usb/xhcid/src/xhci/capability.rs diff --git a/xhcid/src/xhci/context.rs b/usb/xhcid/src/xhci/context.rs similarity index 100% rename from xhcid/src/xhci/context.rs rename to usb/xhcid/src/xhci/context.rs diff --git a/xhcid/src/xhci/device_enumerator.rs b/usb/xhcid/src/xhci/device_enumerator.rs similarity index 100% rename from xhcid/src/xhci/device_enumerator.rs rename to usb/xhcid/src/xhci/device_enumerator.rs diff --git a/xhcid/src/xhci/doorbell.rs b/usb/xhcid/src/xhci/doorbell.rs similarity index 100% rename from xhcid/src/xhci/doorbell.rs rename to usb/xhcid/src/xhci/doorbell.rs diff --git a/xhcid/src/xhci/event.rs b/usb/xhcid/src/xhci/event.rs similarity index 100% rename from xhcid/src/xhci/event.rs rename to usb/xhcid/src/xhci/event.rs diff --git a/xhcid/src/xhci/extended.rs b/usb/xhcid/src/xhci/extended.rs similarity index 100% rename from xhcid/src/xhci/extended.rs rename to usb/xhcid/src/xhci/extended.rs diff --git a/xhcid/src/xhci/irq_reactor.rs b/usb/xhcid/src/xhci/irq_reactor.rs similarity index 100% rename from xhcid/src/xhci/irq_reactor.rs rename to usb/xhcid/src/xhci/irq_reactor.rs diff --git a/xhcid/src/xhci/mod.rs b/usb/xhcid/src/xhci/mod.rs similarity index 100% rename from xhcid/src/xhci/mod.rs rename to usb/xhcid/src/xhci/mod.rs diff --git a/xhcid/src/xhci/operational.rs b/usb/xhcid/src/xhci/operational.rs similarity index 100% rename from xhcid/src/xhci/operational.rs rename to usb/xhcid/src/xhci/operational.rs diff --git a/xhcid/src/xhci/port.rs b/usb/xhcid/src/xhci/port.rs similarity index 100% rename from xhcid/src/xhci/port.rs rename to usb/xhcid/src/xhci/port.rs diff --git a/xhcid/src/xhci/ring.rs b/usb/xhcid/src/xhci/ring.rs similarity index 100% rename from xhcid/src/xhci/ring.rs rename to usb/xhcid/src/xhci/ring.rs diff --git a/xhcid/src/xhci/runtime.rs b/usb/xhcid/src/xhci/runtime.rs similarity index 100% rename from xhcid/src/xhci/runtime.rs rename to usb/xhcid/src/xhci/runtime.rs diff --git a/xhcid/src/xhci/scheme.rs b/usb/xhcid/src/xhci/scheme.rs similarity index 100% rename from xhcid/src/xhci/scheme.rs rename to usb/xhcid/src/xhci/scheme.rs diff --git a/xhcid/src/xhci/trb.rs b/usb/xhcid/src/xhci/trb.rs similarity index 100% rename from xhcid/src/xhci/trb.rs rename to usb/xhcid/src/xhci/trb.rs