Searched refs:MGSL_PARAMS (Results 1 - 2 of 2) sorted by relevance

/linux-master/include/uapi/linux/
H A Dsynclink.h170 } MGSL_PARAMS, *PMGSL_PARAMS; typedef in typeref:struct:_MGSL_PARAMS
265 * MGSL_IOCSPARAMS set MGSL_PARAMS structure values
266 * MGSL_IOCGPARAMS get current MGSL_PARAMS structure values
/linux-master/drivers/tty/
H A Dsynclink_gt.c264 MGSL_PARAMS params; /* communications parameters */
325 static const MGSL_PARAMS default_params = {
450 static int get_params(struct slgt_info *info, MGSL_PARAMS __user *params);
451 static int set_params(struct slgt_info *info, MGSL_PARAMS __user *params);
2518 static int get_params(struct slgt_info *info, MGSL_PARAMS __user *user_params)
2521 if (copy_to_user(user_params, &info->params, sizeof(MGSL_PARAMS)))
2526 static int set_params(struct slgt_info *info, MGSL_PARAMS __user *new_params)
2529 MGSL_PARAMS tmp_params;
2532 if (copy_from_user(&tmp_params, new_params, sizeof(MGSL_PARAMS)))
2539 memcpy(&info->params, &tmp_params, sizeof(MGSL_PARAMS));
[all...]

Completed in 115 milliseconds