[PATCH 02/17] firmware: make device_node argument non const

2021-06-22 Thread Sascha Hauer
firmwaremgr_find_by_node() takes a const pointer to a device tree node. Most functions that take a device tree node take a non const pointer though, so we can't call them from there. It might be worth looking into making the pointers const for other functions, but we are not there yet. Make the poi

[PATCH 02/17] firmware: make device_node argument non const

2021-03-10 Thread Sascha Hauer
firmwaremgr_find_by_node() takes a const pointer to a device tree node. Most functions that take a device tree node take a non const pointer though, so we can't call them from there. It might be worth looking into making the pointers const for other functions, but we are not there yet. Make the poi