Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a3cf0d7 authored by Bob Liu's avatar Bob Liu
Browse files

blackfin: bf60x: fix compiling warning



Fix several compiling warning for bf60x.

Signed-off-by: default avatarBob Liu <lliubbo@gmail.com>
parent 93f89519
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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);
+2 −1
Original line number Diff line number Diff line
@@ -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
+6 −1
Original line number Diff line number Diff line
@@ -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;