|
@@ -314,7 +314,7 @@ static void smc_shutdown(struct eth_device *dev)
|
|
|
* Enable the transmit interrupt, so I know if it failed
|
|
|
* Free the kernel data if I actually sent it.
|
|
|
*/
|
|
|
-static int smc_send_packet(struct eth_device *dev, volatile void *packet,
|
|
|
+static int smc_send_packet(struct eth_device *dev, void *packet,
|
|
|
int packet_length)
|
|
|
{
|
|
|
byte packet_no;
|
|
@@ -700,7 +700,7 @@ static int lan91c96_recv(struct eth_device *dev)
|
|
|
return smc_rcv(dev);
|
|
|
}
|
|
|
|
|
|
-static int lan91c96_send(struct eth_device *dev, volatile void *packet,
|
|
|
+static int lan91c96_send(struct eth_device *dev, void *packet,
|
|
|
int length)
|
|
|
{
|
|
|
return smc_send_packet(dev, packet, length);
|