Message ID | 20220713142529.17323-4-yung-chuan.liao@linux.intel.com |
---|---|
State | Superseded |
Headers | show |
Series | soundwire: allocate device_number with IDA | expand |
diff --git a/drivers/soundwire/intel.c b/drivers/soundwire/intel.c index 95ce292994cc..85d4268eea65 100644 --- a/drivers/soundwire/intel.c +++ b/drivers/soundwire/intel.c @@ -22,6 +22,9 @@ #include "bus.h" #include "intel.h" +/* IDA min selected to avoid conflicts with HDaudio/iDISP SDI values */ +#define INTEL_DEV_NUM_IDA_MIN 4 + #define INTEL_MASTER_SUSPEND_DELAY_MS 3000 #define INTEL_MASTER_RESET_ITERATIONS 10 @@ -1297,6 +1300,7 @@ static int intel_link_probe(struct auxiliary_device *auxdev, cdns->msg_count = 0; bus->link_id = auxdev->id; + bus->dev_num_ida_min = INTEL_DEV_NUM_IDA_MIN; sdw_cdns_probe(cdns);