Skip to content

Commit

Permalink
[ARM] pxa: remove pxa_set_cken()
Browse files Browse the repository at this point in the history
pxa_set_cken() is now unused, remove it.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jul 9, 2008
1 parent fdc614e commit 66a7f72
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
18 changes: 0 additions & 18 deletions arch/arm/mach-pxa/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
#include <asm/mach/map.h>

#include <asm/arch/pxa-regs.h>
#include <asm/arch/pxa2xx-regs.h> /* for __pxa_set_cken */

#include "generic.h"

Expand Down Expand Up @@ -60,23 +59,6 @@ unsigned int get_memclk_frequency_10khz(void)
}
EXPORT_SYMBOL(get_memclk_frequency_10khz);

/*
* Routine to safely enable or disable a clock in the CKEN
*/
void __pxa_set_cken(int clock, int enable)
{
unsigned long flags;
local_irq_save(flags);

if (enable)
CKEN |= (1 << clock);
else
CKEN &= ~(1 << clock);

local_irq_restore(flags);
}
EXPORT_SYMBOL(__pxa_set_cken);

/*
* Intel PXA2xx internal register mapping.
*
Expand Down
9 changes: 0 additions & 9 deletions include/asm-arm/arch-pxa/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,6 @@ extern int pxa_gpio_get_value(unsigned gpio);
*/
extern void pxa_gpio_set_value(unsigned gpio, int value);

/*
* Routine to enable or disable CKEN
*/
static inline void __deprecated pxa_set_cken(int clock, int enable)
{
extern void __pxa_set_cken(int clock, int enable);
__pxa_set_cken(clock, enable);
}

/*
* return current memory and LCD clock frequency in units of 10kHz
*/
Expand Down

0 comments on commit 66a7f72

Please sign in to comment.