mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 23:39:18 +00:00
blackfin: bf60x: fix compiling warning
Fix several compiling warning for bf60x. Signed-off-by: Bob Liu <lliubbo@gmail.com>
This commit is contained in:
parent
93f89519fd
commit
3a3cf0d7b8
@ -332,13 +332,15 @@ static void _disable_gptimers(uint16_t mask)
|
||||
|
||||
void disable_gptimers(uint16_t mask)
|
||||
{
|
||||
#ifndef CONFIG_BF60x
|
||||
int i;
|
||||
_disable_gptimers(mask);
|
||||
#ifndef CONFIG_BF60x
|
||||
for (i = 0; i < MAX_BLACKFIN_GPTIMERS; ++i)
|
||||
if (mask & (1 << i))
|
||||
bfin_write(&group_regs[BFIN_TIMER_OCTET(i)]->status, trun_mask[i]);
|
||||
SSYNC();
|
||||
#else
|
||||
_disable_gptimers(mask);
|
||||
#endif
|
||||
}
|
||||
EXPORT_SYMBOL(disable_gptimers);
|
||||
|
@ -105,6 +105,8 @@ static struct platform_device bfin_rotary_device = {
|
||||
#if defined(CONFIG_STMMAC_ETH) || defined(CONFIG_STMMAC_ETH_MODULE)
|
||||
#include <linux/stmmac.h>
|
||||
|
||||
static unsigned short pins[] = P_RMII0;
|
||||
|
||||
static struct stmmac_mdio_bus_data phy_private_data = {
|
||||
.bus_id = 0,
|
||||
.phy_mask = 1,
|
||||
@ -1283,7 +1285,6 @@ static int __init ezkit_init(void)
|
||||
ARRAY_SIZE(bfin_i2c_board_info1));
|
||||
|
||||
#if defined(CONFIG_STMMAC_ETH) || defined(CONFIG_STMMAC_ETH_MODULE)
|
||||
unsigned short pins[] = P_RMII0;
|
||||
if (!peripheral_request_list(pins, "emac0"))
|
||||
printk(KERN_ERR "%s(): request emac pins failed\n", __func__);
|
||||
#endif
|
||||
|
@ -111,6 +111,7 @@ static unsigned int bfin_getfreq_khz(unsigned int cpu)
|
||||
return get_cclk() / 1000;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_BF60x
|
||||
unsigned long cpu_set_cclk(int cpu, unsigned long new)
|
||||
{
|
||||
struct clk *clk;
|
||||
@ -124,11 +125,15 @@ unsigned long cpu_set_cclk(int cpu, unsigned long new)
|
||||
clk_put(clk);
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
static int bfin_target(struct cpufreq_policy *poli,
|
||||
unsigned int target_freq, unsigned int relation)
|
||||
{
|
||||
unsigned int index, plldiv, cpu;
|
||||
#ifndef CONFIG_BF60x
|
||||
unsigned int plldiv;
|
||||
#endif
|
||||
unsigned int index, cpu;
|
||||
unsigned long flags, cclk_hz;
|
||||
struct cpufreq_freqs freqs;
|
||||
static unsigned long lpj_ref;
|
||||
|
Loading…
x
Reference in New Issue
Block a user