NetBSD/sys/arch/newsmips/include/wsconsio.h
dholland 25d3b9e7cb Final bit of PR 41200: headers that declare ioctls should include sys/ioccom.h.
This covers most if not all of the MD headers.

XXX: a lot of the ioctl definitions in some of these files are cutpasted.
2015-09-07 03:49:44 +00:00

18 lines
412 B
C

/* $NetBSD: wsconsio.h,v 1.3 2015/09/07 03:49:45 dholland Exp $ */
#ifndef _NEWSMIPS_WSCONSIO_H_
#define _NEWSMIPS_WSCONSIO_H_
#include <sys/ioccom.h>
#include <dev/wscons/wsconsio.h>
struct newsmips_wsdisplay_fbinfo {
struct wsdisplay_fbinfo wsdisplay_fbinfo;
u_int stride;
};
#define NEWSMIPS_WSDISPLAYIO_GINFO \
_IOR('n', 65, struct newsmips_wsdisplay_fbinfo)
#endif /* !_NEWSMIPS_WSCONSIO_H_ */