xref: /openbsd/sys/dev/pci/drm/include/linux/circ_buf.h (revision 3bef86f7)
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