|
@@ -1105,8 +1105,8 @@ static int dlfb_ops_blank(int blank_mode, struct fb_info *info)
|
|
|
char *bufptr;
|
|
|
struct urb *urb;
|
|
|
|
|
|
- pr_info("/dev/fb%d FB_BLANK mode %d --> %d\n",
|
|
|
- info->node, dev->blank_mode, blank_mode);
|
|
|
+ pr_debug("/dev/fb%d FB_BLANK mode %d --> %d\n",
|
|
|
+ info->node, dev->blank_mode, blank_mode);
|
|
|
|
|
|
if ((dev->blank_mode == FB_BLANK_POWERDOWN) &&
|
|
|
(blank_mode != FB_BLANK_POWERDOWN)) {
|
|
@@ -1613,8 +1613,9 @@ static int dlfb_usb_probe(struct usb_interface *interface,
|
|
|
pr_info("%s %s - serial #%s\n",
|
|
|
usbdev->manufacturer, usbdev->product, usbdev->serial);
|
|
|
pr_info("vid_%04x&pid_%04x&rev_%04x driver's dlfb_data struct at %p\n",
|
|
|
- usbdev->descriptor.idVendor, usbdev->descriptor.idProduct,
|
|
|
- usbdev->descriptor.bcdDevice, dev);
|
|
|
+ le16_to_cpu(usbdev->descriptor.idVendor),
|
|
|
+ le16_to_cpu(usbdev->descriptor.idProduct),
|
|
|
+ le16_to_cpu(usbdev->descriptor.bcdDevice), dev);
|
|
|
pr_info("console enable=%d\n", console);
|
|
|
pr_info("fb_defio enable=%d\n", fb_defio);
|
|
|
pr_info("shadow enable=%d\n", shadow);
|