From: Luke Kenneth Casson Leighton Date: Mon, 25 Jun 2018 08:04:19 +0000 (+0100) Subject: remove debug print X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e49885e226994a521cff9f0bdc2a834d4bc5ccb0;p=pinmux.git remove debug print --- diff --git a/src/bsv/pinmux_generator.py b/src/bsv/pinmux_generator.py index f0d2588..6b4ae07 100644 --- a/src/bsv/pinmux_generator.py +++ b/src/bsv/pinmux_generator.py @@ -113,7 +113,6 @@ def get_cell_bit_width(p): max_num_cells = 0 for cell in p.muxed_cells: max_num_cells = max(len(cell) - 1, max_num_cells) - print max_num_cells, cell, int(math.ceil(math.log(max_num_cells, 2))) return int(math.log(max_num_cells+1, 2))