diff mbox series

[15/38] ra6w: add dev.h

Message ID 20250417135236.52410-16-oleksandr.savchenko.dn@bp.renesas.com (mailing list archive)
State New
Delegated to: Johannes Berg
Headers show
Series wireless: ra6w driver for Renesas IEEE 802.11ax devices | expand

Checks

Context Check Description
wifibot/tree_selection success Guessed tree name to be wireless-next
wifibot/fixes_present success Fixes tag not required for -next series
wifibot/series_format fail Series longer than 15 patches; Target tree name not specified in the subject
wifibot/ynl success Generated files up to date; no warnings/errors; no diff in generated;
wifibot/build_clang fail Errors and warnings before: 5 this patch: 5
wifibot/build_clang_rust success No Rust files in patch. Skipping build
wifibot/build_tools success No tools touched, skip
wifibot/check_selftest success No net selftest shell script
wifibot/deprecated_api success None detected
wifibot/header_inline success No static functions without inline keyword in header files
wifibot/source_inline success Was 0 now: 0
wifibot/verify_fixes success No Fixes tag
wifibot/build_32bit fail Errors and warnings before: 5 this patch: 5
wifibot/build_allmodconfig_warn fail Errors and warnings before: 5 this patch: 5
wifibot/checkpatch warning WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? WARNING: line length of 83 exceeds 80 columns
wifibot/kdoc success Errors and warnings before: 0 this patch: 0
wifibot/verify_signedoff success Signed-off-by tag matches author and committer

Commit Message

Alexander Savchenko April 17, 2025, 1:52 p.m. UTC
Part of the split. Please, take a look at the cover letter for more details

Reviewed-by: Viktor Barna <viktor.barna.rj@bp.renesas.com>
Reviewed-by: Gal Gur <gal.gur.jx@renesas.com>
Signed-off-by: Alexander Savchenko <oleksandr.savchenko.dn@bp.renesas.com>
---
 drivers/net/wireless/renesas/ra6w/dev.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 drivers/net/wireless/renesas/ra6w/dev.h
diff mbox series

Patch

diff --git a/drivers/net/wireless/renesas/ra6w/dev.h b/drivers/net/wireless/renesas/ra6w/dev.h
new file mode 100644
index 000000000000..792f0193fe59
--- /dev/null
+++ b/drivers/net/wireless/renesas/ra6w/dev.h
@@ -0,0 +1,16 @@ 
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright (C) [2022-2025] Renesas Electronics Corporation and/or its affiliates.
+ */
+
+#ifndef RA6W_DEV_H
+#define RA6W_DEV_H
+
+#include <linux/netdevice.h>
+#include <linux/skbuff.h>
+
+void ra6w_dev_init(struct net_device *ndev);
+void ra6w_dev_set_ops(struct net_device *ndev);
+void ra6w_dev_set_monitor_ops(struct net_device *ndev);
+
+#endif /* RA6W_DEV_H */