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

Commit c04d66bb authored by Bryan Wu's avatar Bryan Wu
Browse files

Blackfin arch: clean up some coding style issues



Signed-off-by: default avatarBryan Wu <bryan.wu@analog.com>
parent 1d189474
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ static void bfin_internal_mask_irq(unsigned int irq)
	unsigned mask_bank, mask_bit;
	mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
	mask_bit = (irq - (IRQ_CORETMR + 1)) % 32;
	bfin_write_SIC_IMASK( mask_bank, bfin_read_SIC_IMASK(mask_bank) & \
	bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) &
			     ~(1 << mask_bit));
#endif
	SSYNC();
@@ -162,7 +162,7 @@ static void bfin_internal_unmask_irq(unsigned int irq)
	unsigned mask_bank, mask_bit;
	mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
	mask_bit = (irq - (IRQ_CORETMR + 1)) % 32;
	bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) | \
	bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) |
			     (1 << mask_bit));
#endif
	SSYNC();
@@ -879,7 +879,6 @@ void do_irq(int vec, struct pt_regs *fp)
		sic_status[1] = bfin_read_SIC_ISR(1) & bfin_read_SIC_IMASK(1);
		sic_status[2] = bfin_read_SIC_ISR(2) & bfin_read_SIC_IMASK(2);


		for (;; ivg++) {
			if (ivg >= ivg_stop) {
				atomic_inc(&num_spurious);
+0 −1
Original line number Diff line number Diff line
@@ -68,7 +68,6 @@ static __inline__ void bfin_write_VR_CTL(unsigned int val)
	bfin_write32(SIC_IWR0, iwr0);
	bfin_write32(SIC_IWR1, iwr1);
	bfin_write32(SIC_IWR2, iwr2);
	
}
#define bfin_read_PLL_STAT()		bfin_read16(PLL_STAT)
#define bfin_write_PLL_STAT(val)	bfin_write16(PLL_STAT, val)
+0 −1
Original line number Diff line number Diff line
@@ -74,7 +74,6 @@ static __inline__ void bfin_write_VR_CTL(unsigned int val)
	local_irq_restore(flags);
	bfin_write32(SICA_IWR0, iwr0);
	bfin_write32(SICA_IWR1, iwr1);

}
#define bfin_read_PLL_STAT()                 bfin_read16(PLL_STAT)
#define bfin_write_PLL_STAT(val)             bfin_write16(PLL_STAT,val)
+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@
#define MAP_NORESERVE	0x4000	/* don't check for reservations */
#define MAP_POPULATE	0x8000	/* populate (prefault) pagetables */
#define MAP_NONBLOCK	0x10000	/* do not block on IO */
#define MAP_UNINITIALIZE 0x4000000  /* For anonymous mmap, memory could
                                    be uninitialized. */

#define MS_ASYNC	1	/* sync memory asynchronously */
#define MS_INVALIDATE	2	/* invalidate the caches */
+2 −2

File changed.

Contains only whitespace changes.