1*9d68d1eeSLuciano Coelho /* 2*9d68d1eeSLuciano Coelho * This file is part of wl12xx 3*9d68d1eeSLuciano Coelho * 4*9d68d1eeSLuciano Coelho * Copyright (C) 1998-2009, 2011 Texas Instruments. All rights reserved. 5*9d68d1eeSLuciano Coelho * Copyright (C) 2008-2010 Nokia Corporation 6*9d68d1eeSLuciano Coelho * 7*9d68d1eeSLuciano Coelho * This program is free software; you can redistribute it and/or 8*9d68d1eeSLuciano Coelho * modify it under the terms of the GNU General Public License 9*9d68d1eeSLuciano Coelho * version 2 as published by the Free Software Foundation. 10*9d68d1eeSLuciano Coelho * 11*9d68d1eeSLuciano Coelho * This program is distributed in the hope that it will be useful, but 12*9d68d1eeSLuciano Coelho * WITHOUT ANY WARRANTY; without even the implied warranty of 13*9d68d1eeSLuciano Coelho * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14*9d68d1eeSLuciano Coelho * General Public License for more details. 15*9d68d1eeSLuciano Coelho * 16*9d68d1eeSLuciano Coelho * You should have received a copy of the GNU General Public License 17*9d68d1eeSLuciano Coelho * along with this program; if not, write to the Free Software 18*9d68d1eeSLuciano Coelho * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 19*9d68d1eeSLuciano Coelho * 02110-1301 USA 20*9d68d1eeSLuciano Coelho * 21*9d68d1eeSLuciano Coelho */ 22*9d68d1eeSLuciano Coelho 23*9d68d1eeSLuciano Coelho #ifndef __WL12XX_ACX_H__ 24*9d68d1eeSLuciano Coelho #define __WL12XX_ACX_H__ 25*9d68d1eeSLuciano Coelho 26*9d68d1eeSLuciano Coelho #include "../wlcore/wlcore.h" 27*9d68d1eeSLuciano Coelho 28*9d68d1eeSLuciano Coelho struct wl1271_acx_host_config_bitmap { 29*9d68d1eeSLuciano Coelho struct acx_header header; 30*9d68d1eeSLuciano Coelho 31*9d68d1eeSLuciano Coelho __le32 host_cfg_bitmap; 32*9d68d1eeSLuciano Coelho } __packed; 33*9d68d1eeSLuciano Coelho 34*9d68d1eeSLuciano Coelho int wl1271_acx_host_if_cfg_bitmap(struct wl1271 *wl, u32 host_cfg_bitmap); 35*9d68d1eeSLuciano Coelho 36*9d68d1eeSLuciano Coelho #endif /* __WL12XX_ACX_H__ */ 37