diff options
author | Dave Airlie <[email protected]> | 2017-07-09 20:27:48 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-07-17 01:44:14 +0100 |
commit | acf1e132afd1578eb7346635e1ca60f5ac6d05b1 (patch) | |
tree | 5dd3658f2d9fdce06e80173bd1e08149dff9b91a /src/amd/addrlib/gfx9 | |
parent | f8d5b377c8b1452c71d2766becad881f5541cda1 (diff) |
amd/addrlib: fix typo in api name.
This fixes the misspelling of ALIGNMENTS in addrlib.
Reviewed-by: Eduardo Lima Mitev <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/addrlib/gfx9')
-rw-r--r-- | src/amd/addrlib/gfx9/gfx9addrlib.cpp | 2 | ||||
-rw-r--r-- | src/amd/addrlib/gfx9/gfx9addrlib.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/addrlib/gfx9/gfx9addrlib.cpp b/src/amd/addrlib/gfx9/gfx9addrlib.cpp index 9b2537151ac..57ecb058727 100644 --- a/src/amd/addrlib/gfx9/gfx9addrlib.cpp +++ b/src/amd/addrlib/gfx9/gfx9addrlib.cpp @@ -663,7 +663,7 @@ ADDR_E_RETURNCODE Gfx9Lib::HwlComputeDccInfo( ************************************************************************************************************************ */ ADDR_E_RETURNCODE Gfx9Lib::HwlGetMaxAlignments( - ADDR_GET_MAX_ALINGMENTS_OUTPUT* pOut ///< [out] output structure + ADDR_GET_MAX_ALIGNMENTS_OUTPUT* pOut ///< [out] output structure ) const { pOut->baseAlign = HwlComputeSurfaceBaseAlign(ADDR_SW_64KB); diff --git a/src/amd/addrlib/gfx9/gfx9addrlib.h b/src/amd/addrlib/gfx9/gfx9addrlib.h index 96236103d04..b7d12871665 100644 --- a/src/amd/addrlib/gfx9/gfx9addrlib.h +++ b/src/amd/addrlib/gfx9/gfx9addrlib.h @@ -374,7 +374,7 @@ protected: private: virtual ADDR_E_RETURNCODE HwlGetMaxAlignments( - ADDR_GET_MAX_ALINGMENTS_OUTPUT* pOut) const; + ADDR_GET_MAX_ALIGNMENTS_OUTPUT* pOut) const; virtual BOOL_32 HwlInitGlobalParams( const ADDR_CREATE_INPUT* pCreateIn); |