Module Name: src
Committed By: riastradh
Date: Wed Nov 6 19:42:25 UTC 2024
Modified Files:
src/sys/dev/i2c: ds2482owvar.h
Log Message:
dev/i2c/ds4284owvar.h: Add missing includes.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/i2c/ds2482owvar.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/i2c/ds2482owvar.h
diff -u src/sys/dev/i2c/ds2482owvar.h:1.2 src/sys/dev/i2c/ds2482owvar.h:1.3
--- src/sys/dev/i2c/ds2482owvar.h:1.2 Wed Nov 6 15:49:36 2024
+++ src/sys/dev/i2c/ds2482owvar.h Wed Nov 6 19:42:25 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: ds2482owvar.h,v 1.2 2024/11/06 15:49:36 riastradh Exp $ */
+/* $NetBSD: ds2482owvar.h,v 1.3 2024/11/06 19:42:25 riastradh Exp $ */
/*
* Copyright (c) 2024 Brad Spencer <[email protected]>
@@ -19,6 +19,14 @@
#ifndef _DEV_I2C_DS2482VAR_H_
#define _DEV_I2C_DS2482VAR_H_
+#include <sys/types.h>
+
+#include <sys/device_if.h>
+#include <sys/mutex.h>
+
+#include <dev/i2c/i2cvar.h>
+#include <dev/onewire/onewirevar.h>
+
#define DS2482_NUM_INSTANCES 8
struct ds2482ow_sc;