mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ACPI / LPSS: allow to use specific PM domain during ->probe()
The LPSS DMA controller would like to use the specific PM domain callbacks during early stage, namely in ->probe(). This patch moves the specific PM domain assignment early to be accessible during a whole life time of the device in the system. Suggested-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Tested-by: Scott Ashcroft <scott.ashcroft@talk21.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
		
							parent
							
								
									cb39dcdd4e
								
							
						
					
					
						commit
						01ac170ba2
					
				
					 1 changed files with 4 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -659,19 +659,17 @@ static int acpi_lpss_platform_notify(struct notifier_block *nb,
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	switch (action) {
 | 
			
		||||
	case BUS_NOTIFY_BOUND_DRIVER:
 | 
			
		||||
		pdev->dev.pm_domain = &acpi_lpss_pm_domain;
 | 
			
		||||
		break;
 | 
			
		||||
	case BUS_NOTIFY_UNBOUND_DRIVER:
 | 
			
		||||
		pdev->dev.pm_domain = NULL;
 | 
			
		||||
		break;
 | 
			
		||||
	case BUS_NOTIFY_ADD_DEVICE:
 | 
			
		||||
		pdev->dev.pm_domain = &acpi_lpss_pm_domain;
 | 
			
		||||
		if (pdata->dev_desc->flags & LPSS_LTR)
 | 
			
		||||
			return sysfs_create_group(&pdev->dev.kobj,
 | 
			
		||||
						  &lpss_attr_group);
 | 
			
		||||
		break;
 | 
			
		||||
	case BUS_NOTIFY_DEL_DEVICE:
 | 
			
		||||
		if (pdata->dev_desc->flags & LPSS_LTR)
 | 
			
		||||
			sysfs_remove_group(&pdev->dev.kobj, &lpss_attr_group);
 | 
			
		||||
		pdev->dev.pm_domain = NULL;
 | 
			
		||||
		break;
 | 
			
		||||
	default:
 | 
			
		||||
		break;
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue