patch-2.4.20 linux-2.4.20/drivers/net/pcmcia/3c574_cs.c
Next file: linux-2.4.20/drivers/net/pcmcia/aironet4500_cs.c
Previous file: linux-2.4.20/drivers/net/pci-skeleton.c
Back to the patch index
Back to the overall index
- Lines: 61
- Date:
Thu Nov 28 15:53:14 2002
- Orig file:
linux-2.4.19/drivers/net/pcmcia/3c574_cs.c
- Orig date:
Tue Nov 13 09:02:30 2001
diff -urN linux-2.4.19/drivers/net/pcmcia/3c574_cs.c linux-2.4.20/drivers/net/pcmcia/3c574_cs.c
@@ -86,6 +86,8 @@
#include <linux/skbuff.h>
#include <linux/if_arp.h>
#include <linux/ioport.h>
+#include <linux/ethtool.h>
+#include <asm/uaccess.h>
#include <pcmcia/version.h>
#include <pcmcia/cs_types.h>
@@ -1189,6 +1191,26 @@
return worklimit;
}
+static int netdev_ethtool_ioctl(struct net_device *dev, void *useraddr)
+{
+ u32 ethcmd;
+
+ if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd)))
+ return -EFAULT;
+
+ switch (ethcmd) {
+ case ETHTOOL_GDRVINFO: {
+ struct ethtool_drvinfo info = {ETHTOOL_GDRVINFO};
+ strncpy(info.driver, "3c574_cs", sizeof(info.driver)-1);
+ if (copy_to_user(useraddr, &info, sizeof(info)))
+ return -EFAULT;
+ return 0;
+ }
+ }
+
+ return -EOPNOTSUPP;
+}
+
/* Provide ioctl() calls to examine the MII xcvr state. */
static int el3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
{
@@ -1202,12 +1224,14 @@
data[0], data[1], data[2], data[3]);
switch(cmd) {
+ case SIOCETHTOOL:
+ return netdev_ethtool_ioctl(dev, (void *)rq->ifr_data);
case SIOCDEVPRIVATE: /* Get the address of the PHY in use. */
data[0] = phy;
case SIOCDEVPRIVATE+1: /* Read the specified MII register. */
{
int saved_window;
- long flags;
+ unsigned long flags;
save_flags(flags);
cli();
@@ -1221,7 +1245,7 @@
case SIOCDEVPRIVATE+2: /* Write the specified MII register */
{
int saved_window;
- long flags;
+ unsigned long flags;
if (!capable(CAP_NET_ADMIN))
return -EPERM;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)