1
0
Fork 0
mirror of https://github.com/kidoman/embd synced 2025-07-03 03:47:33 +02:00

spi: changes in fields/symbols to follow idiomatic go

This commit is contained in:
Kunal Powar 2014-04-28 03:13:57 +05:30
parent 12db8443b0
commit faa686f01c
5 changed files with 47 additions and 50 deletions

View file

@ -10,13 +10,13 @@ type spiDriver struct {
busMap map[byte]SPIBus
busMapLock sync.Mutex
spf spiBusFactory
sbf spiBusFactory
}
func NewSPIDriver(spiDevMinor byte, sbf spiBusFactory) SPIDriver {
return &spiDriver{
spiDevMinor: spiDevMinor,
spf: sbf,
sbf: sbf,
}
}
@ -24,7 +24,7 @@ func (s *spiDriver) Bus(mode, channel byte, speed, bpw, delay int) SPIBus {
s.busMapLock.Lock()
defer s.busMapLock.Unlock()
b := s.spf(s.spiDevMinor, mode, channel, speed, bpw, delay)
b := s.sbf(s.spiDevMinor, mode, channel, speed, bpw, delay)
s.busMap[channel] = b
return b
}