@@ -493,7 +493,7 @@ EXPORT_SYMBOL(acpi_os_unmap_generic_address);
493
493
494
494
#ifdef ACPI_FUTURE_USAGE
495
495
acpi_status
496
- acpi_os_get_physical_address (void * virt , acpi_physical_address * phys )
496
+ acpi_os_get_physical_address (void * virt , acpi_physical_address * phys )
497
497
{
498
498
if (!phys || !virt )
499
499
return AE_BAD_PARAMETER ;
@@ -784,7 +784,7 @@ acpi_os_write_memory(acpi_physical_address phys_addr, u64 value, u32 width)
784
784
785
785
#ifdef CONFIG_PCI
786
786
acpi_status
787
- acpi_os_read_pci_configuration (struct acpi_pci_id * pci_id , u32 reg ,
787
+ acpi_os_read_pci_configuration (struct acpi_pci_id * pci_id , u32 reg ,
788
788
u64 * value , u32 width )
789
789
{
790
790
int result , size ;
@@ -816,7 +816,7 @@ acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg,
816
816
}
817
817
818
818
acpi_status
819
- acpi_os_write_pci_configuration (struct acpi_pci_id * pci_id , u32 reg ,
819
+ acpi_os_write_pci_configuration (struct acpi_pci_id * pci_id , u32 reg ,
820
820
u64 value , u32 width )
821
821
{
822
822
int result , size ;
@@ -1197,7 +1197,7 @@ bool acpi_queue_hotplug_work(struct work_struct *work)
1197
1197
}
1198
1198
1199
1199
acpi_status
1200
- acpi_os_create_semaphore (u32 max_units , u32 initial_units , acpi_handle * handle )
1200
+ acpi_os_create_semaphore (u32 max_units , u32 initial_units , acpi_handle * handle )
1201
1201
{
1202
1202
struct semaphore * sem = NULL ;
1203
1203
@@ -1554,7 +1554,7 @@ void acpi_os_release_lock(acpi_spinlock lockp, acpi_cpu_flags flags)
1554
1554
******************************************************************************/
1555
1555
1556
1556
acpi_status
1557
- acpi_os_create_cache (char * name , u16 size , u16 depth , acpi_cache_t * * cache )
1557
+ acpi_os_create_cache (char * name , u16 size , u16 depth , acpi_cache_t * * cache )
1558
1558
{
1559
1559
* cache = kmem_cache_create (name , size , 0 , 0 , NULL );
1560
1560
if (* cache == NULL )
@@ -1575,7 +1575,7 @@ acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
1575
1575
*
1576
1576
******************************************************************************/
1577
1577
1578
- acpi_status acpi_os_purge_cache (acpi_cache_t * cache )
1578
+ acpi_status acpi_os_purge_cache (acpi_cache_t * cache )
1579
1579
{
1580
1580
kmem_cache_shrink (cache );
1581
1581
return (AE_OK );
@@ -1594,7 +1594,7 @@ acpi_status acpi_os_purge_cache(acpi_cache_t * cache)
1594
1594
*
1595
1595
******************************************************************************/
1596
1596
1597
- acpi_status acpi_os_delete_cache (acpi_cache_t * cache )
1597
+ acpi_status acpi_os_delete_cache (acpi_cache_t * cache )
1598
1598
{
1599
1599
kmem_cache_destroy (cache );
1600
1600
return (AE_OK );
@@ -1614,7 +1614,7 @@ acpi_status acpi_os_delete_cache(acpi_cache_t * cache)
1614
1614
*
1615
1615
******************************************************************************/
1616
1616
1617
- acpi_status acpi_os_release_object (acpi_cache_t * cache , void * object )
1617
+ acpi_status acpi_os_release_object (acpi_cache_t * cache , void * object )
1618
1618
{
1619
1619
kmem_cache_free (cache , object );
1620
1620
return (AE_OK );
0 commit comments