convert unlikely panic to hard_assert to not waste space for string (#826)

This commit is contained in:
Graham Sanderson 2022-05-15 15:01:44 -05:00 committed by GitHub
parent 4e62c26a2c
commit 5e22c09660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,9 +90,7 @@ static void hw_enumeration_fix_force_ls_j(void) {
// DM must be 0 for this to work. This is true if it is selected // DM must be 0 for this to work. This is true if it is selected
// to any other function. fn 8 on this pin is only for debug so shouldn't // to any other function. fn 8 on this pin is only for debug so shouldn't
// be selected // be selected
if (gpio_get_function(dm) == 8) { hard_assert(gpio_get_function(dm) != 8);
panic("Not expecting DM to be function 8");
}
// Before changing any pin state, take a copy of the current gpio control register // Before changing any pin state, take a copy of the current gpio control register
gpio_ctrl_prev = iobank0_hw->io[dp].ctrl; gpio_ctrl_prev = iobank0_hw->io[dp].ctrl;