diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-11 14:49:57 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-11 14:49:57 +0000 |
commit | aad54cede52f6bcf78112aee2af9b7f5d309bfb4 (patch) | |
tree | 636e607f1c5ca1a8fb9bc2797d25a93e346b1aa1 /sys | |
parent | 8cb424d70f54a8c079181c873f144e4b0cb13427 (diff) |
fix prototype; iosf_i2c_relese -> iosf_i2c_release
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/iosfvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/iosfvar.h b/sys/dev/ic/iosfvar.h index a0c2417891e..a23c963c2c8 100644 --- a/sys/dev/ic/iosfvar.h +++ b/sys/dev/ic/iosfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: iosfvar.h,v 1.1 2023/04/23 00:20:26 dlg Exp $ */ +/* $OpenBSD: iosfvar.h,v 1.2 2024/05/11 14:49:56 jsg Exp $ */ /* * Copyright (c) 2023 David Gwynne <dlg@openbsd.org> @@ -43,7 +43,7 @@ int iosf_mbi_available(void); /* for i2c */ int iosf_i2c_acquire(int); -void iosf_i2c_relese(int); +void iosf_i2c_release(int); /* for drm to coordinate with the rest of the kernel */ void iosf_mbi_punit_acquire(void); |