Blackfin arch: clean up some coding style issues
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
@@ -147,7 +147,7 @@ static void bfin_internal_mask_irq(unsigned int irq)
|
|||||||
unsigned mask_bank, mask_bit;
|
unsigned mask_bank, mask_bit;
|
||||||
mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
|
mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
|
||||||
mask_bit = (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));
|
~(1 << mask_bit));
|
||||||
#endif
|
#endif
|
||||||
SSYNC();
|
SSYNC();
|
||||||
@@ -162,7 +162,7 @@ static void bfin_internal_unmask_irq(unsigned int irq)
|
|||||||
unsigned mask_bank, mask_bit;
|
unsigned mask_bank, mask_bit;
|
||||||
mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
|
mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
|
||||||
mask_bit = (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));
|
(1 << mask_bit));
|
||||||
#endif
|
#endif
|
||||||
SSYNC();
|
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[1] = bfin_read_SIC_ISR(1) & bfin_read_SIC_IMASK(1);
|
||||||
sic_status[2] = bfin_read_SIC_ISR(2) & bfin_read_SIC_IMASK(2);
|
sic_status[2] = bfin_read_SIC_ISR(2) & bfin_read_SIC_IMASK(2);
|
||||||
|
|
||||||
|
|
||||||
for (;; ivg++) {
|
for (;; ivg++) {
|
||||||
if (ivg >= ivg_stop) {
|
if (ivg >= ivg_stop) {
|
||||||
atomic_inc(&num_spurious);
|
atomic_inc(&num_spurious);
|
||||||
|
@@ -68,7 +68,6 @@ static __inline__ void bfin_write_VR_CTL(unsigned int val)
|
|||||||
bfin_write32(SIC_IWR0, iwr0);
|
bfin_write32(SIC_IWR0, iwr0);
|
||||||
bfin_write32(SIC_IWR1, iwr1);
|
bfin_write32(SIC_IWR1, iwr1);
|
||||||
bfin_write32(SIC_IWR2, iwr2);
|
bfin_write32(SIC_IWR2, iwr2);
|
||||||
|
|
||||||
}
|
}
|
||||||
#define bfin_read_PLL_STAT() bfin_read16(PLL_STAT)
|
#define bfin_read_PLL_STAT() bfin_read16(PLL_STAT)
|
||||||
#define bfin_write_PLL_STAT(val) bfin_write16(PLL_STAT, val)
|
#define bfin_write_PLL_STAT(val) bfin_write16(PLL_STAT, val)
|
||||||
|
@@ -74,7 +74,6 @@ static __inline__ void bfin_write_VR_CTL(unsigned int val)
|
|||||||
local_irq_restore(flags);
|
local_irq_restore(flags);
|
||||||
bfin_write32(SICA_IWR0, iwr0);
|
bfin_write32(SICA_IWR0, iwr0);
|
||||||
bfin_write32(SICA_IWR1, iwr1);
|
bfin_write32(SICA_IWR1, iwr1);
|
||||||
|
|
||||||
}
|
}
|
||||||
#define bfin_read_PLL_STAT() bfin_read16(PLL_STAT)
|
#define bfin_read_PLL_STAT() bfin_read16(PLL_STAT)
|
||||||
#define bfin_write_PLL_STAT(val) bfin_write16(PLL_STAT,val)
|
#define bfin_write_PLL_STAT(val) bfin_write16(PLL_STAT,val)
|
||||||
|
@@ -22,8 +22,6 @@
|
|||||||
#define MAP_NORESERVE 0x4000 /* don't check for reservations */
|
#define MAP_NORESERVE 0x4000 /* don't check for reservations */
|
||||||
#define MAP_POPULATE 0x8000 /* populate (prefault) pagetables */
|
#define MAP_POPULATE 0x8000 /* populate (prefault) pagetables */
|
||||||
#define MAP_NONBLOCK 0x10000 /* do not block on IO */
|
#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_ASYNC 1 /* sync memory asynchronously */
|
||||||
#define MS_INVALIDATE 2 /* invalidate the caches */
|
#define MS_INVALIDATE 2 /* invalidate the caches */
|
||||||
|
Reference in New Issue
Block a user