Lines Matching refs:idle_mode
265 u32 idle_mode;
452 static int get_txidle(struct slgt_info *info, int __user *idle_mode);
453 static int set_txidle(struct slgt_info *info, int idle_mode);
2547 static int get_txidle(struct slgt_info *info, int __user *idle_mode)
2549 DBGINFO(("%s get_txidle=%d\n", info->device_name, info->idle_mode));
2550 if (put_user(info->idle_mode, idle_mode))
2555 static int set_txidle(struct slgt_info *info, int idle_mode)
2558 DBGINFO(("%s set_txidle(%d)\n", info->device_name, idle_mode));
2560 info->idle_mode = idle_mode;
3495 info->idle_mode = HDLC_TXIDLE_FLAGS;
4374 if (info->idle_mode & HDLC_TXIDLE_CUSTOM_16) {
4378 wr_reg8(info, TPR, (unsigned char)((info->idle_mode >> 8) & 0xff));
4385 if (info->idle_mode & (HDLC_TXIDLE_CUSTOM_8 | HDLC_TXIDLE_CUSTOM_16)) {
4387 val = (unsigned char)(info->idle_mode & 0xff);
4390 switch(info->idle_mode)