Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/cooloney/blackfin-2.6

* 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/cooloney/blackfin-2.6:
Blackfin arch: use KBUILD_CFLAGS and KBUILD_AFLAGS in Makefile
Blackfin arch: Javier Herrer writes: fix building when icache and dcache is disabled

+4 -4
+2 -2
arch/blackfin/Makefile
··· 12 12 OBJCOPYFLAGS := -O binary -R .note -R .comment -S 13 13 GZFLAGS := -9 14 14 15 - CFLAGS += $(call cc-option,-mno-fdpic) 16 - AFLAGS += $(call cc-option,-mno-fdpic) 15 + KBUILD_CFLAGS += $(call cc-option,-mno-fdpic) 16 + KBUILD_AFLAGS += $(call cc-option,-mno-fdpic) 17 17 CFLAGS_MODULE += -mlong-calls 18 18 KALLSYMS += --symbol-prefix=_ 19 19
+2 -2
arch/blackfin/kernel/setup.c
··· 501 501 502 502 unsigned long usecs_to_sclk(unsigned long usecs) 503 503 { 504 - return get_sclk() / (USEC_PER_SEC * (u64)usecs); 504 + return (get_sclk() * (u64)usecs) / USEC_PER_SEC; 505 505 } 506 506 EXPORT_SYMBOL(usecs_to_sclk); 507 507 ··· 589 589 #elif defined CONFIG_BFIN_WT 590 590 "wt" 591 591 #endif 592 - , 0); 592 + "", 0); 593 593 594 594 seq_printf(m, "%s\n", cache); 595 595