diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-07-16 12:01:42 -0400 | 
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-07-16 12:01:42 -0400 | 
| commit | 8626e4a42675ff9903f7d4fbf14d8ebc11b5926c (patch) | |
| tree | c631dfe2854cb1382a5d8f5aa11b071762ddf27d /drivers/acpi/apei/ghes.c | |
| parent | a8d8f02cf0c379693762107afe812b9e52090e39 (diff) | |
| parent | 9249e17fe094d853d1ef7475dd559a2cc7e23d42 (diff) | |
| download | olio-linux-3.10-8626e4a42675ff9903f7d4fbf14d8ebc11b5926c.tar.xz olio-linux-3.10-8626e4a42675ff9903f7d4fbf14d8ebc11b5926c.zip  | |
Merge commit '9249e17fe094d853d1ef7475dd559a2cc7e23d42' into nfs-for-3.6
Resolve conflicts with the VFS atomic open and sget changes.
Conflicts:
	fs/nfs/nfs4proc.c
Diffstat (limited to 'drivers/acpi/apei/ghes.c')
| -rw-r--r-- | drivers/acpi/apei/ghes.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c index 9b3cac0abec..1599566ed1f 100644 --- a/drivers/acpi/apei/ghes.c +++ b/drivers/acpi/apei/ghes.c @@ -301,7 +301,7 @@ static struct ghes *ghes_new(struct acpi_hest_generic *generic)  	if (!ghes)  		return ERR_PTR(-ENOMEM);  	ghes->generic = generic; -	rc = acpi_os_map_generic_address(&generic->error_status_address); +	rc = apei_map_generic_address(&generic->error_status_address);  	if (rc)  		goto err_free;  	error_block_length = generic->error_block_length; @@ -321,7 +321,7 @@ static struct ghes *ghes_new(struct acpi_hest_generic *generic)  	return ghes;  err_unmap: -	acpi_os_unmap_generic_address(&generic->error_status_address); +	apei_unmap_generic_address(&generic->error_status_address);  err_free:  	kfree(ghes);  	return ERR_PTR(rc); @@ -330,7 +330,7 @@ err_free:  static void ghes_fini(struct ghes *ghes)  {  	kfree(ghes->estatus); -	acpi_os_unmap_generic_address(&ghes->generic->error_status_address); +	apei_unmap_generic_address(&ghes->generic->error_status_address);  }  enum {  |