|
@@ -1,5 +1,6 @@
|
|
/*
|
|
/*
|
|
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
|
|
|
|
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
@@ -112,6 +113,19 @@ struct wlan_afc_host_partial_request {
|
|
/* Other structures to follow. See the layout in the comment above */
|
|
/* Other structures to follow. See the layout in the comment above */
|
|
} qdf_packed;
|
|
} qdf_packed;
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * enum reg_afc_dev_deploy_type - Deployment type of AP
|
|
|
|
+ *
|
|
|
|
+ * @AFC_DEPLOYMENT_UNKNOWN: Unknown
|
|
|
|
+ * @AFC_DEPLOYMENT_INDOOR: Located Indoor
|
|
|
|
+ * @AFC_DEPLOYMENT_OUTDOOR: Located Outdoor
|
|
|
|
+ */
|
|
|
|
+enum reg_afc_dev_deploy_type {
|
|
|
|
+ AFC_DEPLOYMENT_UNKNOWN = 0,
|
|
|
|
+ AFC_DEPLOYMENT_INDOOR = 1,
|
|
|
|
+ AFC_DEPLOYMENT_OUTDOOR = 2,
|
|
|
|
+};
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* The following is the layout of the AFC response.
|
|
* The following is the layout of the AFC response.
|
|
*
|
|
*
|