aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRam Kishore Vegesna <ram@FreeBSD.org>2021-12-06 07:02:02 +0000
committerRam Kishore Vegesna <ram@FreeBSD.org>2021-12-07 08:44:38 +0000
commit6f78736cb12026fcb423e1b313e83efb80597f21 (patch)
tree9d76eb703a9d4233f8c33ad7554e8aba2bedf1f9
parent43c4b47b75f37313c122799fdf7488251bdc7cf7 (diff)
downloadsrc-6f78736cb12026fcb423e1b313e83efb80597f21.tar.gz
src-6f78736cb12026fcb423e1b313e83efb80597f21.zip
ocs_fc: Remove unused function delarations.
Remove unused function declarations. Changes required for internal tool. Approved by: ken
-rw-r--r--sys/dev/ocs_fc/ocs_ioctl.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/ocs_fc/ocs_ioctl.h b/sys/dev/ocs_fc/ocs_ioctl.h
index f2a291843d5a..96dc2dc29094 100644
--- a/sys/dev/ocs_fc/ocs_ioctl.h
+++ b/sys/dev/ocs_fc/ocs_ioctl.h
@@ -306,6 +306,7 @@ typedef struct {
uint16_t name_len; /*<< Input: Length of name */
uint8_t *value; /*<< Output: user space buffer in which to place the response */
uint32_t value_length; /*<< Input: size of the user space buffer */
+ int status; /*<< Output: command execution status */
} ocs_ioctl_cmd_get_t;
typedef struct {
@@ -334,6 +335,11 @@ typedef struct {
uint8_t eof; /*<< EOF Value */
} ocs_ioctl_send_frame_t;
+/*
+ * boardtemp (DUMP_TYPE4_WKI_TAG_SAT_TEM) response buffer length.
+ */
+#define OCS_DUMP_TYPE4_WKI_TAG_SAT_TEM_RESP_LEN (6 * 4)
+
/**
* @brief linkcfg strings
*/
@@ -365,6 +371,4 @@ typedef struct {
#define OCS_IOCTL_CMD_UNLOAD _IO(OCS_IOCTL_CMD_BASE, 18)
#define OCS_IOCTL_CMD_SEND_FRAME _IOWR(OCS_IOCTL_CMD_BASE, 19, ocs_ioctl_send_frame_t)
-extern void ocs_info_get_xport_address(ocs_t *ocs, ocs_ioctl_driver_info_t *info);
-extern int32_t ocs_device_ioctl_xport(ocs_t *ocs, unsigned int cmd, unsigned long arg);
#endif