ibmpc: Fix XT reset comment and add inhibit_xt()

This commit is contained in:
tmk 2020-10-27 02:33:33 +09:00
parent 12e5a3a13e
commit 842b3f29b6
2 changed files with 13 additions and 6 deletions

View file

@ -188,11 +188,17 @@ static inline void idle(void)
data_hi();
}
/* inhibit device to send */
/* inhibit device to send(AT), soft reset(XT) */
static inline void inhibit(void)
{
clock_lo();
data_hi();
}
/* inhibit device to send(XT) */
static inline void inhibit_xt(void)
{
clock_hi();
data_lo();
}
#endif