summaryrefslogtreecommitdiff
path: root/lib/libpci.ver
blob: 7ac8d344c64e294a28313d474f6b0ecfaf7dfb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Version script for the libpci */

/*
 *  Visibility declarations in the source take precedence over this script,
 *  so we can boldly declare pci_* as public and still keep the internal
 *  functions properly hidden.
 */

LIBPCI_3.0 {
	global:
		pci_alloc;
		pci_cleanup;
		pci_fill_info;
		pci_filter_init;
		pci_filter_match;
		pci_filter_parse_id;
		pci_filter_parse_slot;
		pci_free_dev;
		pci_free_name_list;
		pci_get_dev;
		pci_get_method_name;
		pci_get_param;
		pci_id_cache_flush;
		pci_init;
		pci_load_name_list;
		pci_lookup_method;
		pci_lookup_name;
		pci_read_block;
		pci_read_byte;
		pci_read_long;
		pci_read_word;
		pci_scan_bus;
		pci_set_name_list_path;
		pci_set_param;
		pci_setup_cache;
		pci_walk_params;
		pci_write_block;
		pci_write_byte;
		pci_write_long;
		pci_write_word;
	local: *;
};

LIBPCI_3.1 {
	global:
		pci_fill_info;
		pci_find_cap;
		pci_read_vpd;
};

LIBPCI_3.2 {
	global:
		pci_fill_info;
};

LIBPCI_3.3 {
	global:
		pci_fill_info;
		pci_filter_init;
		pci_filter_match;
		pci_filter_parse_id;
		pci_filter_parse_slot;
};

LIBPCI_3.4 {
	global:
		pci_fill_info;
};