[BACK]Return to gpio.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / include / asm-generic

File: [Development] / linux-2.6-xfs / include / asm-generic / gpio.h (download)

Revision 1.1, Tue Mar 20 15:37:21 2007 UTC (10 years, 7 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN

Merge up to 2.6.21-rc4
Merge of 2.6.x-xfs-melb:linux:28276b by kenmcd.

#ifndef _ASM_GENERIC_GPIO_H
#define _ASM_GENERIC_GPIO_H

/* platforms that don't directly support access to GPIOs through I2C, SPI,
 * or other blocking infrastructure can use these wrappers.
 */

static inline int gpio_cansleep(unsigned gpio)
{
	return 0;
}

static inline int gpio_get_value_cansleep(unsigned gpio)
{
	might_sleep();
	return gpio_get_value(gpio);
}

static inline void gpio_set_value_cansleep(unsigned gpio, int value)
{
	might_sleep();
	gpio_set_value(gpio, value);
}

#endif /* _ASM_GENERIC_GPIO_H */