X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.c;h=7307414d737b4b9a2467d9dc966657847b60cfba;hp=3f83cb4700f99ee4bc608ae5990cc63477ee618c;hb=31cf8623be5e402f4fdc624ba1f5c43e64c80ca9;hpb=25cb39d2bcf72442c7d793a71b5a3950f701e302;ds=sidebyside diff --git a/device.c b/device.c index 3f83cb4..7307414 100644 --- a/device.c +++ b/device.c @@ -179,7 +179,7 @@ void device_init_virtual(struct device *dev, const struct device_type *type, con if (name) strncpy(dev->ifname, name, IFNAMSIZ); - fprintf(stderr, "Initialize device '%s'\n", dev->ifname); + DPRINTF("Initialize device '%s'\n", dev->ifname); INIT_LIST_HEAD(&dev->users); dev->type = type; } @@ -228,7 +228,7 @@ void device_cleanup(struct device *dev) { struct device_user *dep, *tmp; - fprintf(stderr, "Clean up device '%s'\n", dev->ifname); + DPRINTF("Clean up device '%s'\n", dev->ifname); list_for_each_entry_safe(dep, tmp, &dev->users, list) { if (!dep->cb) continue;