2005-12-27 23:29:07

by Brian Gerst

[permalink] [raw]
Subject: [PATCH] Remove unused apic_write_atomic

[PATCH] Remove unused apic_write_atomic

This function is never used for x86_64.

Signed-off-by: Brian Gerst <[email protected]>

---
commit 9a4863865f6c539b799adf0f41de862a7163d819
tree 9bf9251b3a95c76c9086366c459cd067b3669e91
parent 79cac2a221ce18642550a13bed0f0203514923ea
author Brian Gerst <[email protected]> Tue, 27 Dec 2005 18:19:09 -0500
committer Brian Gerst <[email protected]> Tue, 27 Dec 2005 18:19:09 -0500

include/asm-x86_64/apic.h | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/include/asm-x86_64/apic.h b/include/asm-x86_64/apic.h
index 5647b7d..50cccf5 100644
--- a/include/asm-x86_64/apic.h
+++ b/include/asm-x86_64/apic.h
@@ -42,11 +42,6 @@ static __inline void apic_write(unsigned
*((volatile unsigned int *)(APIC_BASE+reg)) = v;
}

-static __inline void apic_write_atomic(unsigned long reg, unsigned int v)
-{
- xchg((volatile unsigned int *)(APIC_BASE+reg), v);
-}
-
static __inline unsigned int apic_read(unsigned long reg)
{
return *((volatile unsigned int *)(APIC_BASE+reg));


Attachments:
apic_write_atomic (1.03 kB)

2005-12-28 17:58:25

by Andi Kleen

[permalink] [raw]
Subject: Re: [PATCH] Remove unused apic_write_atomic

Am Mi 28.12.2005 00:29 schrieb Brian Gerst <[email protected]>:

> This function is never used for x86_64.
>
> Signed-off-by: Brian Gerst <[email protected]>

Thanks merged.

-Andi