Home
last modified time | relevance | path

Searched refs:system_serial_low (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sys/arch/evbarm/gumstix/
H A Dif_smsh_gxio.c99 KASSERT(system_serial_high != 0 || system_serial_low != 0); in smsh_gxio_attach()
111 sc->sc_enaddr[2] = system_serial_low >> 24; in smsh_gxio_attach()
112 sc->sc_enaddr[3] = system_serial_low >> 16; in smsh_gxio_attach()
113 sc->sc_enaddr[4] = system_serial_low >> 8; in smsh_gxio_attach()
114 sc->sc_enaddr[5] = (system_serial_low & 0xc0) | in smsh_gxio_attach()
H A Dif_sm_gxio.c179 KASSERT(system_serial_high != 0 || system_serial_low != 0); in sm_gxio_attach()
194 myea[2] = system_serial_low >> 24; in sm_gxio_attach()
195 myea[3] = system_serial_low >> 16; in sm_gxio_attach()
196 myea[4] = system_serial_low >> 8; in sm_gxio_attach()
197 myea[5] = (system_serial_low & 0xc0) | in sm_gxio_attach()
H A Dgumstixvar.h45 extern uint32_t system_serial_low;
H A Dgumstix_machdep.c208 uint32_t system_serial_low; variable
499 system_serial_low = system_serial[4] << 24 | system_serial[5] << 16 | in read_system_serial()