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

Commit 719154c6 authored by Bob Liu's avatar Bob Liu
Browse files

bf60x: fix build warning



Fix several build warning while using bf609-ezkit_defconfig.

Signed-off-by: default avatarBob Liu <lliubbo@gmail.com>
parent 0220874a
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -688,7 +688,6 @@ void bf609_nor_flash_exit(struct platform_device *dev)
	peripheral_free_list(pins);

	bfin_write32(SMC_GCTL, 0);
	return 0;
}

static struct physmap_flash_data ezkit_flash_data = {
+3 −0
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@
#define ANOMALY_05000158 (0)
#define ANOMALY_05000189 (0)
#define ANOMALY_05000198 (0)
#define ANOMALY_05000220 (0)
#define ANOMALY_05000230 (0)
#define ANOMALY_05000231 (0)
#define ANOMALY_05000244 (0)
@@ -81,7 +82,9 @@
#define ANOMALY_05000323 (0)
#define ANOMALY_05000363 (0)
#define ANOMALY_05000380 (0)
#define ANOMALY_05000448 (0)
#define ANOMALY_05000450 (0)
#define ANOMALY_05000456 (0)
#define ANOMALY_05000480 (0)
#define ANOMALY_05000481 (1)

+3 −6
Original line number Diff line number Diff line
@@ -174,11 +174,7 @@ void bfin_hibernate_syscontrol(void)
	bfin_write32(DPM0_RESTORE5, bfin_read32(DPM0_RESTORE5) | 4);
}

#ifndef CONFIG_BF60x
# define SIC_SYSIRQ(irq)	(irq - (IRQ_CORETMR + 1))
#else
# define SIC_SYSIRQ(irq)	((irq) - IVG15)
#endif
#define IRQ_SID(irq)   ((irq) - IVG15)
asmlinkage void enter_deepsleep(void);

__attribute__((l1_text))
@@ -314,6 +310,8 @@ static struct syscore_ops smc_pm_syscore_ops = {
static irqreturn_t test_isr(int irq, void *dev_id)
{
	printk(KERN_DEBUG "gpio irq %d\n", irq);
	if (irq == 231)
		bfin_sec_raise_irq(IRQ_SID(IRQ_SOFT1));
	return IRQ_HANDLED;
}

@@ -323,7 +321,6 @@ static irqreturn_t dpm0_isr(int irq, void *dev_id)
	bfin_write32(CGU0_STAT, bfin_read32(CGU0_STAT));
	return IRQ_HANDLED;
}
#endif

static int __init bf609_init_pm(void)
{
+3 −3
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ static void bfin_sec_set_priority(unsigned int sec_int_levels, u8 *sec_int_prior
	hard_local_irq_restore(flags);
}

static void bfin_sec_raise_irq(unsigned int sid)
void bfin_sec_raise_irq(unsigned int sid)
{
	unsigned long flags = hard_local_irq_save();

@@ -434,10 +434,10 @@ void handle_core_fault(unsigned int irq, struct irq_desc *desc)
		panic("Kernel core hardware error");
		break;
	case IRQ_C0_NMI_L1_PARITY_ERR:
		panic("NMI %d occurs unexpectedly");
		panic("NMI occurs unexpectedly");
		break;
	default:
		panic("Core 1 fault %d occurs unexpectedly");
		panic("Core 1 fault occurs unexpectedly");
	}

	raw_spin_unlock(&desc->lock);