Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drivers/bluetooth/btintel.c
Original file line number Diff line number Diff line change
Expand Up @@ -3068,6 +3068,7 @@ static int btintel_setup_combined(struct hci_dev *hdev)
}

/* Apply the common HCI quirks for Intel device */
set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Expand Down
3 changes: 2 additions & 1 deletion drivers/gpu/drm/i915/i915_active.c
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,8 @@ int i915_active_acquire_preallocate_barrier(struct i915_active *ref,

/* Wait until the previous preallocation is completed */
while (!llist_empty(&ref->preallocated_barriers))
cond_resched();
//cond_resched();
usleep_range(10, 50);

/*
* Preallocate a node for each physical engine supporting the target
Expand Down
9 changes: 9 additions & 0 deletions drivers/media/usb/uvc/uvc_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2575,6 +2575,15 @@ static const struct usb_device_id uvc_ids[] = {
.bInterfaceSubClass = 1,
.bInterfaceProtocol = 0,
.driver_info = UVC_INFO_QUIRK(UVC_QUIRK_WAKE_AUTOSUSPEND)},
/* Logitech HD Pro Webcam C922 */
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
| USB_DEVICE_ID_MATCH_INT_INFO,
.idVendor = 0x046d,
.idProduct = 0x085c,
.bInterfaceClass = USB_CLASS_VIDEO,
.bInterfaceSubClass = 1,
.bInterfaceProtocol = 0,
.driver_info = (kernel_ulong_t)&uvc_quirk_probe_def },
/* Logitech, Webcam B910 */
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
| USB_DEVICE_ID_MATCH_INT_INFO,
Expand Down
2 changes: 2 additions & 0 deletions fs/f2fs/f2fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,9 @@ void _trace_android_rvh_f2fs_down_read(wait_queue_head_t *read_waiters,
static inline void f2fs_down_read(struct f2fs_rwsem *sem)
{
bool skip = false;
#ifdef CONFIG_F2FS_UNFAIR_RWSEM
_trace_android_rvh_f2fs_down_read(&sem->read_waiters, &sem->internal_rwsem, &skip);
#endif
if (skip)
return;
#ifdef CONFIG_F2FS_UNFAIR_RWSEM
Expand Down
1 change: 1 addition & 0 deletions include/sound/pcm.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/poll.h>
#include <linux/mm.h>
#include <linux/bitops.h>
#include <linux/string.h>
#include <linux/pm_qos.h>
#include <linux/refcount.h>
#include <linux/uio.h>
Expand Down
1 change: 1 addition & 0 deletions sound/usb/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ config SND_BCD2000
will be called snd-bcd2000.

source "sound/usb/line6/Kconfig"
source "sound/usb/btusb/Kconfig"

endif # SND_USB

1 change: 1 addition & 0 deletions sound/usb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ obj-$(CONFIG_SND_USB_US122L) += snd-usbmidi-lib.o

obj-$(CONFIG_SND) += misc/ usx2y/ caiaq/ 6fire/ hiface/ bcd2000/
obj-$(CONFIG_SND_USB_LINE6) += line6/
obj-$(CONFIG_BT_SCOHCI) += btusb/
11 changes: 11 additions & 0 deletions sound/usb/btusb/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
config BT_SCOHCI
tristate "BT HCI USB driver"
depends on BT
help
Bluetooth SCO USB driver.
This driver is required if you want to use Bluetooth devices with
USB interface to support SCO.

Say Y here to compile support for Bluetooth USB devices into the
kernel or say M to compile it as module (btusb)

1 change: 1 addition & 0 deletions sound/usb/btusb/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_BT_SCOHCI) += btusb_sco_snd_card.o
Loading