Merge "USB: gadget: Replace %pM with %pm"

This commit is contained in:
Linux Build Service Account 2018-02-13 12:17:08 -08:00 committed by Gerrit - the friendly Code Review server
commit 9591e476bb

View file

@ -1132,7 +1132,7 @@ int gether_get_host_addr_cdc(struct net_device *net, char *host_addr, int len)
return -EINVAL;
dev = netdev_priv(net);
snprintf(host_addr, len, "%pM", dev->host_mac);
snprintf(host_addr, len, "%pm", dev->host_mac);
return strlen(host_addr);
}