CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/04/12 11:47:25
Modified files:
sys/dev/pci/drm/include/linux: seqlock.h spinlock.h
Log message:
Turn those spinlock and seqlock inline functions to macros
They're macros on Linux because they save state in their flags
parameter. Turning them to static inline functions creates a lot
of -Wuninitialized warnings, so just use macros which set their flags
argument.
ok kettenis@
