コード例 #1
0
ファイル: dev-ioctl.c プロジェクト: pierdebeer/Audax_Kernel
static long autofs_dev_ioctl_compat(struct file *file, uint command, ulong u)
{
	return (long) autofs_dev_ioctl(file, command, (ulong) compat_ptr(u));
}
コード例 #2
0
ファイル: dev-ioctl.c プロジェクト: avagin/linux
static long autofs_dev_ioctl_compat(struct file *file, unsigned int command,
				    unsigned long u)
{
	return autofs_dev_ioctl(file, command, (unsigned long) compat_ptr(u));
}