Linux Audio

Check our new training course

Loading...
Note: File does not exist in v5.4.
 1// SPDX-License-Identifier: GPL-2.0
 2#include "map_symbol.h"
 3#include "maps.h"
 4#include "map.h"
 5
 6void map_symbol__exit(struct map_symbol *ms)
 7{
 8	maps__zput(ms->maps);
 9	map__zput(ms->map);
10}
11
12void addr_map_symbol__exit(struct addr_map_symbol *ams)
13{
14	map_symbol__exit(&ams->ms);
15}