1e5b75505Sopenharmony_ci/* 2e5b75505Sopenharmony_ci * Qualcomm Atheros vendor specific attribute definitions 3e5b75505Sopenharmony_ci * Copyright (c) 2014, Qualcomm Atheros, Inc. 4e5b75505Sopenharmony_ci * 5e5b75505Sopenharmony_ci * This software may be distributed under the terms of the BSD license. 6e5b75505Sopenharmony_ci * See README for more details. 7e5b75505Sopenharmony_ci */ 8e5b75505Sopenharmony_ci 9e5b75505Sopenharmony_ci#ifndef QCA_VENDOR_ATTR_H 10e5b75505Sopenharmony_ci#define QCA_VENDOR_ATTR_H 11e5b75505Sopenharmony_ci 12e5b75505Sopenharmony_ci/* 13e5b75505Sopenharmony_ci * This file defines some of the attributes used with Qualcomm Atheros OUI 14e5b75505Sopenharmony_ci * 00:13:74 in a way that is not suitable for qca-vendor.h, e.g., due to 15e5b75505Sopenharmony_ci * compiler dependencies. 16e5b75505Sopenharmony_ci */ 17e5b75505Sopenharmony_ci 18e5b75505Sopenharmony_cistruct qca_avoid_freq_range { 19e5b75505Sopenharmony_ci u32 start_freq; 20e5b75505Sopenharmony_ci u32 end_freq; 21e5b75505Sopenharmony_ci} __attribute__ ((packed)); 22e5b75505Sopenharmony_ci 23e5b75505Sopenharmony_cistruct qca_avoid_freq_list { 24e5b75505Sopenharmony_ci u32 count; 25e5b75505Sopenharmony_ci struct qca_avoid_freq_range range[0]; 26e5b75505Sopenharmony_ci} __attribute__ ((packed)); 27e5b75505Sopenharmony_ci 28e5b75505Sopenharmony_ci#endif /* QCA_VENDOR_ATTR_H */ 29