rsnd_ssiu_probe() leaks an OF node reference obtained by
rsnd_ssiu_of_node(). The node reference is acquired but
never released across all return paths.
Fix it by declaring the device node with the __free(device_node)
cleanup construct to ensure automatic release when the variable goes
out of scope.
Fixes:
|
||
|---|---|---|
| .. | ||
| Makefile | ||
| adg.c | ||
| cmd.c | ||
| core.c | ||
| ctu.c | ||
| debugfs.c | ||
| dma.c | ||
| dvc.c | ||
| gen.c | ||
| mix.c | ||
| msiof.c | ||
| rsnd.h | ||
| src.c | ||
| ssi.c | ||
| ssiu.c | ||