Lines Matching refs:idle_mode
269 u32 idle_mode;
457 static int get_txidle(struct slgt_info *info, int __user *idle_mode);
458 static int set_txidle(struct slgt_info *info, int idle_mode);
2564 static int get_txidle(struct slgt_info *info, int __user *idle_mode)
2566 DBGINFO(("%s get_txidle=%d\n", info->device_name, info->idle_mode));
2567 if (put_user(info->idle_mode, idle_mode))
2572 static int set_txidle(struct slgt_info *info, int idle_mode)
2575 DBGINFO(("%s set_txidle(%d)\n", info->device_name, idle_mode));
2577 info->idle_mode = idle_mode;
3522 info->idle_mode = HDLC_TXIDLE_FLAGS;
4414 if (info->idle_mode & HDLC_TXIDLE_CUSTOM_16) {
4418 wr_reg8(info, TPR, (unsigned char)((info->idle_mode >> 8) & 0xff));
4425 if (info->idle_mode & (HDLC_TXIDLE_CUSTOM_8 | HDLC_TXIDLE_CUSTOM_16)) {
4427 val = (unsigned char)(info->idle_mode & 0xff);
4430 switch(info->idle_mode)