Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.14 28 lines 831 B view raw
1/* 2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 3 * All rights reserved. 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * File: channel.h 16 * 17 */ 18 19#ifndef _CHANNEL_H_ 20#define _CHANNEL_H_ 21 22#include "card.h" 23 24void vnt_init_bands(struct vnt_private *priv); 25 26bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch); 27 28#endif /* _CHANNEL_H_ */