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
lcd_mipid.h
#ifndef __LCD_MIPID_H
#define __LCD_MIPID_H

enum mipid_test_num {
	MIPID_TEST_RGB_LINES,
};

enum mipid_test_result {
	MIPID_TEST_SUCCESS,
	MIPID_TEST_INVALID,
	MIPID_TEST_FAILED,
};

#ifdef __KERNEL__

struct mipid_platform_data {
	int	nreset_gpio;
	int	data_lines;
	void	(*shutdown)(struct mipid_platform_data *pdata);
};

#endif

#endif
back to top