From e780ad0c7e69f537f039de765186f9566db0fd9a Mon Sep 17 00:00:00 2001
From: Eric Kooistra <kooistra@astron.nl>
Date: Thu, 5 Oct 2023 15:25:01 +0200
Subject: [PATCH] Fix too long lines.

---
 .../src/vhdl/sdp_bdo_multiple_destinations.vhd | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/applications/lofar2/libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd b/applications/lofar2/libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd
index 9beecbdf2d..ab82c282e3 100644
--- a/applications/lofar2/libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd
+++ b/applications/lofar2/libraries/sdp/src/vhdl/sdp_bdo_multiple_destinations.vhd
@@ -97,12 +97,18 @@ architecture str of sdp_bdo_multiple_destinations is
 
   -- Look up table constants as function of nof_destinations in range(g_nof_destinations_max)
   constant c_m                                             : natural := g_nof_destinations_max;
-  constant c_reorder_nof_blocks_arr                        : t_natural_arr(1 to c_m) := func_sdp_bdo_reorder_nof_blocks_look_up_table(c_m);
-  constant c_reorder_nof_ch_arr                            : t_natural_arr(1 to c_m) := func_sdp_bdo_reorder_nof_ch_look_up_table(c_m);
-  constant c_nof_beamlets_per_block_first_destinations_arr : t_natural_arr(1 to c_m) := func_sdp_bdo_nof_beamlets_per_block_first_destinations_look_up_table(c_m);
-  constant c_nof_beamlets_per_block_last_destination_arr   : t_natural_arr(1 to c_m) := func_sdp_bdo_nof_beamlets_per_block_last_destination_look_up_table(c_m);
-  constant c_nof_ch_per_packet_first_destinations_arr      : t_natural_arr(1 to c_m) := func_sdp_bdo_nof_ch_per_packet_first_destinations_look_up_table(c_m);
-  constant c_nof_ch_per_packet_last_destination_arr        : t_natural_arr(1 to c_m) := func_sdp_bdo_nof_ch_per_packet_last_destination_look_up_table(c_m);
+  constant c_reorder_nof_blocks_arr                        : t_natural_arr(1 to c_m) :=
+             func_sdp_bdo_reorder_nof_blocks_look_up_table(c_m);
+  constant c_reorder_nof_ch_arr                            : t_natural_arr(1 to c_m) :=
+             func_sdp_bdo_reorder_nof_ch_look_up_table(c_m);
+  constant c_nof_beamlets_per_block_first_destinations_arr : t_natural_arr(1 to c_m) :=
+             func_sdp_bdo_nof_beamlets_per_block_first_destinations_look_up_table(c_m);
+  constant c_nof_beamlets_per_block_last_destination_arr   : t_natural_arr(1 to c_m) :=
+             func_sdp_bdo_nof_beamlets_per_block_last_destination_look_up_table(c_m);
+  constant c_nof_ch_per_packet_first_destinations_arr      : t_natural_arr(1 to c_m) :=
+             func_sdp_bdo_nof_ch_per_packet_first_destinations_look_up_table(c_m);
+  constant c_nof_ch_per_packet_last_destination_arr        : t_natural_arr(1 to c_m) :=
+             func_sdp_bdo_nof_ch_per_packet_last_destination_look_up_table(c_m);
 
   constant c_nof_ch_per_packet_max  : natural := largest(c_nof_ch_per_packet_first_destinations_arr);
   constant c_nof_ch_per_packet_w    : natural := ceil_log2(c_nof_ch_per_packet_max + 1);
-- 
GitLab