pcnet: s/le16_to_cpu/cpu_to_le16/ in pcnet_send
authorPaul Burton <paul.burton@imgtec.com>
Fri, 8 Nov 2013 11:18:44 +0000 (11:18 +0000)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Sat, 9 Nov 2013 16:21:01 +0000 (17:21 +0100)
This should cause no change to the generated code, but is semantically
correct.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
drivers/net/pcnet.c

index a30a0bc..843a6fc 100644 (file)
@@ -427,10 +427,10 @@ static int pcnet_send(struct eth_device *dev, void *packet, int pkt_len)
         * set the status with the "ownership" bits last.
         */
        status = 0x8300;
-       entry->length = le16_to_cpu(-pkt_len);
+       entry->length = cpu_to_le16(-pkt_len);
        entry->misc = 0x00000000;
        entry->base = PCI_TO_MEM_LE(dev, packet);
-       entry->status = le16_to_cpu(status);
+       entry->status = cpu_to_le16(status);
 
        /* Trigger an immediate send poll. */
        pcnet_write_csr(dev, 0, 0x0008);