diff options
| author | Joerg Roedel <[email protected]> | 2008-07-11 17:14:23 +0200 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2008-07-11 18:01:11 +0200 |
| commit | 8ea80d783efd0c50577ec8d69757ae54c408eacd (patch) | |
| tree | 5f4c577435f600a2ed03280de0849713cc27e64f /include | |
| parent | 431b2a2015337533f1a9e39a840266a8a2c93144 (diff) | |
x86, AMD IOMMU: replace HIGH_U32 macro with upper_32_bits function
Removes a driver specific macro and replaces it with a generic function already
available in Linux.
Signed-off-by: Joerg Roedel <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-x86/amd_iommu_types.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/asm-x86/amd_iommu_types.h b/include/asm-x86/amd_iommu_types.h index 945fd498a3ad..14aaffe38fe5 100644 --- a/include/asm-x86/amd_iommu_types.h +++ b/include/asm-x86/amd_iommu_types.h @@ -33,7 +33,6 @@ /* helper macros */ #define LOW_U32(x) ((x) & ((1ULL << 32)-1)) -#define HIGH_U32(x) (LOW_U32((x) >> 32)) /* Length of the MMIO region for the AMD IOMMU */ #define MMIO_REGION_LENGTH 0x4000 |