From 7abcead6a99a6aebd62c4dbb642b3174aca45f29 Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Fri, 13 Sep 2019 12:48:28 +0900 Subject: [PATCH] des: Fix data type of drive_sel --- sw/kousaten/src/fpga_cell_lut34.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/kousaten/src/fpga_cell_lut34.h b/sw/kousaten/src/fpga_cell_lut34.h index ede13c6..5f50d3c 100644 --- a/sw/kousaten/src/fpga_cell_lut34.h +++ b/sw/kousaten/src/fpga_cell_lut34.h @@ -46,7 +46,7 @@ struct fpga_cell_lut34 { int led_lut_out_enable; char lut_in_sel[4]; /* Input select */ - int drive_sel[4]; /* Which signal to drive onto each fabric line */ + char drive_sel[4]; /* Which signal to drive onto each fabric line */ int sync; /* Register output on rising edge of clk */ int route_en; /* Bitfield, Enable routing between {left, top} and main fabric */