Skip to content

Commit 95fc2d8

Browse files
vapieraet00
authored andcommitted
blackfin: fix L1 data A overflow link issue
This patch fix below compile error: "bfin-uclinux-ld: L1 data A overflow!" It is due to the recent lib/gen_crc32table.c change: 46c5801 crc32: bolt on crc32c it added 8KiB more data to __cacheline_aligned which cause blackfin L1 data cache overflow. Signed-off-by: Mike Frysinger <[email protected]> Signed-off-by: Bob Liu <[email protected]>
1 parent 5d32c88 commit 95fc2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/blackfin/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ config CACHELINE_ALIGNED_L1
823823
bool "Locate cacheline_aligned data to L1 Data Memory"
824824
default y if !BF54x
825825
default n if BF54x
826-
depends on !SMP && !BF531
826+
depends on !SMP && !BF531 && !CRC32
827827
help
828828
If enabled, cacheline_aligned data is linked
829829
into L1 data memory. (less latency)

0 commit comments

Comments
 (0)