From d6104baa618686f7f0f0f36216394b60553ac14a Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 21 May 2024 22:18:52 -0400 Subject: kernel: devfs: Add support for close hook Signed-off-by: Ian Moffett --- sys/include/sys/device.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/include') diff --git a/sys/include/sys/device.h b/sys/include/sys/device.h index 69e367f..1bca4a8 100644 --- a/sys/include/sys/device.h +++ b/sys/include/sys/device.h @@ -43,6 +43,7 @@ struct device { int(*read)(struct device *dev, struct sio_txn *sio); int(*ioctl)(struct device *dev, uint32_t cmd, uintptr_t arg); int(*open)(struct device *dev); + int(*close)(struct device *dev); paddr_t(*mmap)(struct device *dev, off_t off, vm_prot_t prot); TAILQ_ENTRY(device) link; }; -- cgit v1.2.3