mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 14:43:08 +00:00
m1n1.fw.afk: Fix TX/RX_BUFSIZE confusion
Signed-off-by: Martin Povišer <povik@protonmail.com>
This commit is contained in:
parent
ce517b10a3
commit
c5e80f0d5a
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class EPICService:
|
|||
self.log(f"Init: {props}")
|
||||
self.props = props
|
||||
self.rxbuf, self.rxbuf_dva = self.ep.asc.ioalloc(self.RX_BUFSIZE)
|
||||
self.txbuf, self.txbuf_dva = self.ep.asc.ioalloc(self.RX_BUFSIZE)
|
||||
self.txbuf, self.txbuf_dva = self.ep.asc.ioalloc(self.TX_BUFSIZE)
|
||||
self.ready = True
|
||||
|
||||
def wait(self):
|
||||
|
|
Loading…
Reference in a new issue