Commit c7779f13d83726f4f59e3fe56a7785d68a76df9b

fix compile error when linuxinput keyboard driver is compiled as module

When creating the driver instance two parameters are given to the
driver. But it accepts only the name of the device to be used.
  
6969 Q_UNUSED(device);
7070 if (driver.compare(QLatin1String("LinuxInput"), Qt::CaseInsensitive))
7171 return 0;
72 return new QWSLinuxInputKeyboardHandler(driver, device);
72 return new QWSLinuxInputKeyboardHandler(device);
7373}
7474
7575Q_EXPORT_PLUGIN2(qwslinuxinputkbddriver, QLinuxInputKbdDriver)