1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * This file is part of wl18xx 4 * 5 * Copyright (C) 2011 Texas Instruments 6 */ 7 8 #ifndef __WL18XX_IO_H__ 9 #define __WL18XX_IO_H__ 10 11 int __must_check wl18xx_top_reg_write(struct wl1271 *wl, int addr, u16 val); 12 int __must_check wl18xx_top_reg_read(struct wl1271 *wl, int addr, u16 *out); 13 14 #endif /* __WL18XX_IO_H__ */ 15