From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Seeger Date: Sun, 18 Mar 2018 02:38:31 -0400 Subject: [U-Boot] pci modify [.l .w .b] Message-ID: <2111747.tqiAZ2LkMF@wirbelwind> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi list. If a pci modify command is issued, do_pci() takes the size specifier (.l, .w, .b) and turns it into one of PCI_SIZE_8, PCI_SIZE_16, or PCI_SIZE_32, which correspond to 0, 1, and 2. Consequently, the address increment moves at 0, 1, or 2 bytes. This would be a trivial patch for me to make, but before I do that I wanted to make sure that this was not the desired behavior, or that I am not missing something. Thanks, Steven