xref: /openbsd-src/sys/dev/pci/drm/include/linux/circ_buf.h (revision 53555c846a0a6f917dbd0a191f826da995ab1c42)
1 /* Public domain. */
2 
3 #ifndef _LINUX_CIRC_BUF_H
4 #define _LINUX_CIRC_BUF_H
5 
6 #define CIRC_SPACE(h,t,s)	(((t) - ((h)+1)) & ((s)-1))
7 
8 #endif
9