diff --git a/ovos_PHAL/__init__.py b/ovos_PHAL/__init__.py index 35e9b12..dd001a3 100644 --- a/ovos_PHAL/__init__.py +++ b/ovos_PHAL/__init__.py @@ -29,7 +29,7 @@ def load_plugins(self): enabled = config.get("enabled") if enabled: try: - self.drivers[name] = plug() + self.drivers[name] = plug(bus=self.bus, config=config) LOG.info(f"PHAL plugin loaded: {name}") except Exception: LOG.exception(f"failed to load PHAL plugin: {name}")