/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* Copyright (c) 2026, Broadcom Inc3*/45#ifndef _UAPI_FWCTL_BNXT_H_6#define _UAPI_FWCTL_BNXT_H_78#include <linux/types.h>910enum fwctl_bnxt_commands {11FWCTL_BNXT_INLINE_COMMANDS = 0,12FWCTL_BNXT_QUERY_COMMANDS,13FWCTL_BNXT_SEND_COMMANDS,14};1516/**17* struct fwctl_info_bnxt - ioctl(FWCTL_INFO) out_device_data18* @uctx_caps: The command capabilities driver accepts.19*20* Return basic information about the FW interface available.21*/22struct fwctl_info_bnxt {23__u32 uctx_caps;24};25#endif262728