Signed-off-by: Andrzej Pietrasiewicz <andrze...@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.p...@samsung.com>
---
 drivers/usb/gadget/u_ether.c |   11 +++++++++++
 drivers/usb/gadget/u_ether.h |   10 ++++++++++
 2 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/gadget/u_ether.c b/drivers/usb/gadget/u_ether.c
index 6d3ccdc..aa7ed15 100644
--- a/drivers/usb/gadget/u_ether.c
+++ b/drivers/usb/gadget/u_ether.c
@@ -963,6 +963,17 @@ int gether_get_host_addr_cdc(struct net_device *net, char 
*host_addr, int len)
 }
 EXPORT_SYMBOL(gether_get_host_addr_cdc);
 
+void gether_get_host_addr_u8(struct net_device *net, u8 host_mac[ETH_ALEN])
+{
+       struct eth_dev *dev;
+
+       dev = netdev_priv(net);
+       host_mac[0] = dev->host_mac[0]; host_mac[1] = dev->host_mac[1];
+       host_mac[2] = dev->host_mac[2]; host_mac[3] = dev->host_mac[3];
+       host_mac[4] = dev->host_mac[4]; host_mac[5] = dev->host_mac[5];
+}
+EXPORT_SYMBOL(gether_get_host_addr_u8);
+
 void gether_set_qmult(struct net_device *net, unsigned qmult)
 {
        struct eth_dev *dev;
diff --git a/drivers/usb/gadget/u_ether.h b/drivers/usb/gadget/u_ether.h
index 1671a79..5efa657 100644
--- a/drivers/usb/gadget/u_ether.h
+++ b/drivers/usb/gadget/u_ether.h
@@ -210,6 +210,16 @@ int gether_get_host_addr(struct net_device *net, char 
*host_addr, int len);
 int gether_get_host_addr_cdc(struct net_device *net, char *host_addr, int len);
 
 /**
+ * gether_get_host_addr_u8 - get an ethernet-over-usb link host address
+ * @net: device representing this link
+ * @host_mac: place to store the eth address of the host
+ *
+ * This gets the binary formatted host-side Ethernet address of this
+ * ethernet-over-usb link.
+ */
+void gether_get_host_addr_u8(struct net_device *net, u8 host_mac[ETH_ALEN]);
+
+/**
  * gether_set_qmult - initialize an ethernet-over-usb link with a multiplier
  * @net: device representing this link
  * @qmult: queue multiplier
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to