CVE-2026-72324: gpio: mvebu: free generic chips on unbind
In the Linux kernel, the following vulnerability has been resolved:
gpio: mvebu: free generic chips on unbind
irqallocdomaingenericchips() allocates generic chip data that must be freed via irqdomainremovegenericchips(). The devres action mvebugpioremoveirqdomain() only called irqdomainremove(), which only frees the generic chips if IRQDOMAINFLAGDESTROYGC is set. Call irqdomainremovegenericchips() explicitly before irqdomainremove() instead.