try {
dm = InitialNaming.lookup(DeviceManager.NAME);
dm.rename(device, getDevicePrefix(), true);
} catch (DeviceAlreadyRegisteredException ex) {
log.error("Cannot rename device", ex);
throw new DriverException("Cannot rename device", ex);
} catch (NameNotFoundException ex) {
throw new DriverException("Cannot find DeviceManager", ex);
}
claimResources();
device.registerAPI(USBHostControllerAPI.class, getAPIImplementation());
// Create & start a monitor
final USBHubAPI hubApi = getAPIImplementation().getRootHUB();