summaryrefslogtreecommitdiffstats
path: root/include/linux/i8254.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/i8254.h')
-rw-r--r--include/linux/i8254.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/i8254.h b/include/linux/i8254.h
new file mode 100644
index 000000000..a675c3092
--- /dev/null
+++ b/include/linux/i8254.h
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/* Copyright (C) William Breathitt Gray */
+#ifndef _I8254_H_
+#define _I8254_H_
+
+struct device;
+struct regmap;
+
+/**
+ * struct i8254_regmap_config - Configuration for the register map of an i8254
+ * @parent: parent device
+ * @map: regmap for the i8254
+ */
+struct i8254_regmap_config {
+ struct device *parent;
+ struct regmap *map;
+};
+
+int devm_i8254_regmap_register(struct device *dev, const struct i8254_regmap_config *config);
+
+#endif /* _I8254_H_ */