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

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

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
..
Android.mk android: introduce Android.common.mk to reduce boilerplate 2017-01-27 15:48:16 +00:00
Makefile.am kms: remove commented out libudev code 2016-12-05 17:24:03 +00:00
Makefile.sources libkms: move sources lists to makefile.sources 2014-09-28 17:09:34 +01:00
api.c libkms: annotate public functions 2018-09-19 22:46:45 -07:00
dumb.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
exynos.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
intel.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
internal.h meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
kms-symbol-check *-symbol-check: Don't hard-code nm executable 2018-02-23 17:53:08 +00:00
libkms.h remove usage of 'c_plusplus' preprocessor macro 2015-08-10 11:25:39 +03:00
libkms.pc.in libkms: add libdrm to Requires.private 2016-02-04 13:22:50 +00:00
linux.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
meson.build *-symbol-check: Don't hard-code nm executable 2018-02-23 17:53:08 +00:00
nouveau.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
radeon.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00
vmwgfx.c meson,configure: include config.h automatically 2018-03-20 18:19:26 +00:00