This is an automated email from Gerrit. "Ahmed Haoues <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9353
-- gerrit commit b0b37ec74e4157166a51ce0fdabb23f09da4f446 Author: HAOUES Ahmed <[email protected]> Date: Thu Dec 25 10:30:07 2025 +0100 flash/bluenrg-x: implement flash bank deallocation with simple alloc All drivers which simply allocate one driver_priv memory block per each bank now use default_flash_free_driver_priv() Change-Id: Id998013332fe29d6882004a0ff897464dd4dccbc Signed-off-by: HAOUES Ahmed <[email protected]> diff --git a/src/flash/nor/bluenrg-x.c b/src/flash/nor/bluenrg-x.c index ccbbcc66eb..967a4d9851 100644 --- a/src/flash/nor/bluenrg-x.c +++ b/src/flash/nor/bluenrg-x.c @@ -563,4 +563,5 @@ const struct flash_driver bluenrgx_flash = { .protect_check = NULL, .auto_probe = bluenrgx_auto_probe, .info = bluenrgx_get_info, + .free_driver_priv = default_flash_free_driver_priv, }; --
