Re: [PATCH] HID: sony: Fix SHANWAN PS3 GamePad rumbling on USB again

2018-12-28 Thread Antonio Ospite
int sony_probe(struct hid_device *hdev, > const struct hid_device_id *id) > if (!strcmp(hdev->name, "FutureMax Dance Mat")) > quirks |= FUTUREMAX_DANCE_MAT; > > +if (!strcmp(hdev->name, "SHANWAN PS3 GamePad")) > +quirks |= SHANWAN_GAMEPAD; > + > sc = devm_kzalloc(&hdev->dev, sizeof(*sc), GFP_KERNEL); > if (sc == NULL) { > hid_err(hdev, "can't alloc sony descriptor\n"); > -- > 2.20.1 -- Antonio Ospite https://ao2.it https://twitter.com/ao2it A: Because it messes up the order in which people normally read text. See http://en.wikipedia.org/wiki/Posting_style Q: Why is top-posting such a bad thing?

[PATCH 04/12] trivial: drivers/usb/phy/phy.c: remove a leading space

2014-06-04 Thread Antonio Ospite
Signed-off-by: Antonio Ospite Cc: Felipe Balbi Cc: linux-usb@vger.kernel.org --- drivers/usb/phy/phy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/phy/phy.c b/drivers/usb/phy/phy.c index 36b6bce..6d0f608 100644 --- a/drivers/usb/phy/phy.c +++ b/drivers/usb

Re: [PATCH] HID: add support for Sony RF receiver with USB product id 0x0374

2013-01-15 Thread Antonio Ospite
gt; sizeof(sixaxis_rdesc_fixup)); > } > + Ditto. > return rdesc; > } > > @@ -217,6 +219,8 @@ static const struct hid_device_id sony_d > .driver_data = SIXAXIS_CONTROLLER_BT }, > { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_

[PATCH] USB: ftdi_sio: add TIAO USB Multi-Protocol Adapter (TUMPA) support

2012-09-23 Thread Antonio Ospite
%27s_Manual FTDI FT2232H provides two serial channels (A and B), but on the TUMPA channel A is dedicated to JTAG/SPI while channel B can be used for UART/RS-232: use the ftdi_jtag_quirk to expose only channel B as a usb-serial interface to userspace. Signed-off-by: Antonio Ospite --- drivers/usb