drm/nouveau
Lucas De Marchi d7320bfcdd nouveau: annotate public functions
This was done with:
nm --dynamic --defined-only build/nouveau/libdrm_nouveau.so | \
	grep nouveau_ | \
	cut -d ' ' -f3 > /tmp/a.txt

while read sym; do
	read f func line _ <<<$(cscope -d -L -1 $sym)
	if [ ! -z "$f" ]; then
		line=$((line-1))
		sed -i "${line}s/^/drm_public /" $f
	fi
done < /tmp/a.txt

Then some corner cases were manually fixed. The idea here will be to
switch the default visibility to hidden so we don't export symbols we
shouldn't.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Acked-by: Eric Engestrom <eric.engestrom@intel.com>
2018-09-19 22:46:45 -07:00
..
nvif nouveau: import and install a selection of nvif headers from the kernel 2015-12-22 13:21:05 +10:00
Android.mk android: introduce Android.common.mk to reduce boilerplate 2017-01-27 15:48:16 +00:00
Makefile.am automake: Don't include Android Makefiles in the release tarball 2016-07-23 09:45:53 +02:00
Makefile.sources libdrm, freedreno, intel, nouveau, radeon: add Makefile.sources 2014-09-01 16:06:01 +01:00
abi16.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
bufctx.c nouveau: annotate public functions 2018-09-19 22:46:45 -07:00
libdrm_nouveau.pc.in nouveau: import and install a selection of nvif headers from the kernel 2015-12-22 13:21:05 +10:00
meson.build meson: use pkg-config to detect libatomic_ops 2018-03-09 17:12:02 +00:00
nouveau-symbol-check *-symbol-check: Don't hard-code nm executable 2018-02-23 17:53:08 +00:00
nouveau.c nouveau: annotate public functions 2018-09-19 22:46:45 -07:00
nouveau.h nouveau: clean up nouveau.h, noting deprecated members/functions 2015-12-22 13:22:38 +10:00
private.h nouveau: add interfaces to query information about supported classes 2015-12-22 13:22:14 +10:00
pushbuf.c nouveau: annotate public functions 2018-09-19 22:46:45 -07:00