summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2019-07-11 04:26:38 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2019-07-11 04:26:38 +0000
commit10e6e2c59183dd565f2f1fc60eb460cfcb0f093c (patch)
tree181064ad050e78da17ac8d4085a3a7544f5a45e2 /sys/dev
parent8f82cdf8b987cdc72cd6f2572bf0d2ffcbc90231 (diff)
include linux/string.h so drm_panel_orientation_quirks.c can get the
definition for match_string()
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/drm/include/linux/bitmap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/include/linux/bitmap.h b/sys/dev/pci/drm/include/linux/bitmap.h
index f54b9df2bdf..dc2055db5d2 100644
--- a/sys/dev/pci/drm/include/linux/bitmap.h
+++ b/sys/dev/pci/drm/include/linux/bitmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bitmap.h,v 1.1 2019/04/14 10:14:53 jsg Exp $ */
+/* $OpenBSD: bitmap.h,v 1.2 2019/07/11 04:26:37 jsg Exp $ */
/*
* Copyright (c) 2013, 2014, 2015 Mark Kettenis
*
@@ -19,6 +19,7 @@
#define _LINUX_BITMAP_H
#include <linux/bitops.h>
+#include <linux/string.h>
#define bitmap_empty(p, n) (find_first_bit(p, n) == n)