Subversion Repositories HelenOS

Rev

Rev 4270 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4270 Rev 4311
Line 133... Line 133...
133
{
133
{
134
#ifdef CONFIG_FB
134
#ifdef CONFIG_FB
135
    scr_redraw();
135
    scr_redraw();
136
#endif
136
#endif
137
   
137
   
138
    switch (kbd_type) {
-
 
139
#ifdef CONFIG_SGCN_KBD
138
#ifdef CONFIG_SGCN_KBD
140
    case KBD_SGCN:
-
 
141
        sgcn_grab();
139
    sgcn_grab();
142
        break;
-
 
143
#endif
140
#endif
144
    default:
-
 
145
        break;
-
 
146
    }
-
 
147
}
141
}
148
 
142
 
149
/** Return console to userspace
143
/** Return console to userspace
150
 *
144
 *
151
 */
145
 */
152
void arch_release_console(void)
146
void arch_release_console(void)
153
{
147
{
154
    switch (kbd_type) {
-
 
155
#ifdef CONFIG_SGCN_KBD
148
#ifdef CONFIG_SGCN_KBD
156
    case KBD_SGCN:
-
 
157
        sgcn_release();
149
    sgcn_release();
158
        break;
-
 
159
#endif
150
#endif
160
    default:
-
 
161
        break;
-
 
162
    }
-
 
163
}
151
}
164
 
152
 
165
/** @}
153
/** @}
166
 */
154
 */