[BACK]Return to pckbc.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / ic

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/ic/pckbc.c between version 1.59 and 1.60

version 1.59, 2016/07/14 10:19:06 version 1.60, 2019/05/01 07:23:22
Line 608  pckbcintr(void *vsc)
Line 608  pckbcintr(void *vsc)
                 KBD_DELAY;                  KBD_DELAY;
                 data = bus_space_read_1(t->t_iot, t->t_ioh_d, 0);                  data = bus_space_read_1(t->t_iot, t->t_ioh_d, 0);
   
                 rnd_add_uint32(&q->rnd_source, (stat<<8)|data);                  if (q != NULL)
                           rnd_add_uint32(&q->rnd_source, (stat<<8)|data);
   
                 pckbportintr(t->t_pt, slot, data);                  pckbportintr(t->t_pt, slot, data);
         }          }

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60

CVSweb <webmaster@jp.NetBSD.org>