diff options
author | 2020-11-14 14:57:41 +0000 | |
---|---|---|
committer | 2020-11-14 14:57:41 +0000 | |
commit | 8af415a8b1cbf285a31610acb7aa4efce3caa13a (patch) | |
tree | 73453812aaeb1405d3c1177c4edbb515bdf8e3ca /sys/dev/pci/drm/drm_linux.c | |
parent | Add 10G media support. This makes the 10G ports on the "single shot" model (diff) | |
download | wireguard-openbsd-8af415a8b1cbf285a31610acb7aa4efce3caa13a.tar.xz wireguard-openbsd-8af415a8b1cbf285a31610acb7aa4efce3caa13a.zip |
whitespace
Diffstat (limited to 'sys/dev/pci/drm/drm_linux.c')
-rw-r--r-- | sys/dev/pci/drm/drm_linux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/drm_linux.c b/sys/dev/pci/drm/drm_linux.c index f5c165b4b38..c1f35c48319 100644 --- a/sys/dev/pci/drm/drm_linux.c +++ b/sys/dev/pci/drm/drm_linux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: drm_linux.c,v 1.66 2020/11/09 23:53:30 jsg Exp $ */ +/* $OpenBSD: drm_linux.c,v 1.67 2020/11/14 14:57:41 kettenis Exp $ */ /* * Copyright (c) 2013 Jonathan Gray <jsg@openbsd.org> * Copyright (c) 2015, 2016 Mark Kettenis <kettenis@openbsd.org> @@ -564,7 +564,7 @@ memchr_inv(const void *s, int c, size_t n) do { if (*p++ != (unsigned char)c) return ((void *)(p - 1)); - }while (--n != 0); + } while (--n != 0); } return (NULL); } |