Revision 1bcca3c463e4930cef9986b05165bb0b3eb46f63 authored by Pavel Roskin on 27 June 2008, 20:19:58 UTC, committed by John W. Linville on 30 June 2008, 19:43:52 UTC
Rewrite AID calculation in handle_pspoll() to avoid truncating bits.
Make hostap_80211_header_parse() static, don't export it.  Avoid
shadowing variables.

Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
1 parent 15ea0eb
Raw File
device.h
/*
 * Arch specific extensions to struct device
 *
 * This file is released under the GPLv2
 */
#ifndef ASMARM_DEVICE_H
#define ASMARM_DEVICE_H

struct dev_archdata {
#ifdef CONFIG_DMABOUNCE
	struct dmabounce_device_info *dmabounce;
#endif
};

#endif
back to top