[PATCH] spi-nor: Add support for xt25f32b/xt25f128b

2020-06-29 Thread microcai
>From 5e308ec7332d01e84a3a5233f4cb8bd5a00026cf Mon Sep 17 00:00:00 2001 From: microcai Date: Mon, 29 Jun 2020 23:36:40 +0800 Subject: [PATCH] spi-nor: Add support for xt25f32b/xt25f128b The RockPi4b dev board ship with xt25f32b solded. add these ids so the board's spi flash can be acces

[PATCH] mfd: lpc_ich: add support for Intel Z97 chipset

2014-08-08 Thread microcai
off-by: microcai --- drivers/mfd/lpc_ich.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c index 7d8482f..e4b37c0 100644 --- a/drivers/mfd/lpc_ich.c +++ b/drivers/mfd/lpc_ich.c @@ -738,6 +738,7 @@ static const struct pci_device_id lpc_ich_

[PATCH] mfd: lpc_ich: add support for Intel Z97 chipset

2014-08-08 Thread microcai
From: Wanzhao Cai microcai...@gmail.com This patch adds the LPC Controller Device IDs found on ASUS Z97-A mother broad. lspci output for this mother broad: 00:1f.0 ISA bridge [0601]: Intel Corporation 9 Series Chipset Family Z97 LPC Controller [8086:8cc4] Subsystem: ASUSTeK Computer

[PATCH] add quirks for 0x04d9:0xa096 hid keyborad device

2014-07-13 Thread microcai
From: microcai I am using a USB keyborad that give me "usb_submit_urb(ctrl) failed: -1" error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyborad is usable right after plugin Signed-off-by: Wangzhao Cai --- drivers/hid

Re: [PATCH v3] add quirks for 0x04d9:0xa096 hid keyborad device

2014-07-13 Thread microcai
I am using a USB keyboard that give me "usb_submit_urb(ctrl) failed: -1" error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyboard is usable right after plugin --- drivers/hid/hid-ids.h | 1 + drivers/hid/usbhid/hid-quirks.c

[PATCH] add quirks for 0x04d9:0xa096 hid keyborad device

2014-07-13 Thread microcai
From: microcai I am using a USB keyborad that give me "usb_submit_urb(ctrl) failed: -1" error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyborad is usable right after plugin --- drivers/hid/hid-ids.h | 1 + d

[PATCH v2] add quirks for 0x4d9:0xa096 hid device

2014-07-13 Thread microcai
Resend the patch, because I miss spell the keyborad as mouse -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

[PATCH] add quirks for 0x4d9:0xa096 hid device

2014-07-13 Thread microcai
From: microcai I am using a USB keyborad that give me "usb_submit_urb(ctrl) failed: -1" error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyborad is usable right after plugin --- drivers/hid/hid-ids.h | 1 + d

[PATCH] add quirks for 0x4d9:0xa096 hid device

2014-07-13 Thread microcai
From: microcai microcai...@gmail.com I am using a USB keyborad that give me usb_submit_urb(ctrl) failed: -1 error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyborad is usable right after plugin --- drivers/hid/hid-ids.h

[PATCH v2] add quirks for 0x4d9:0xa096 hid device

2014-07-13 Thread microcai
Resend the patch, because I miss spell the keyborad as mouse -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

[PATCH] add quirks for 0x04d9:0xa096 hid keyborad device

2014-07-13 Thread microcai
From: microcai microcai...@gmail.com I am using a USB keyborad that give me usb_submit_urb(ctrl) failed: -1 error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyborad is usable right after plugin --- drivers/hid/hid-ids.h

Re: [PATCH v3] add quirks for 0x04d9:0xa096 hid keyborad device

2014-07-13 Thread microcai
I am using a USB keyboard that give me usb_submit_urb(ctrl) failed: -1 error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyboard is usable right after plugin --- drivers/hid/hid-ids.h | 1 + drivers/hid/usbhid/hid-quirks.c |

[PATCH] add quirks for 0x04d9:0xa096 hid keyborad device

2014-07-13 Thread microcai
From: microcai microcai...@gmail.com I am using a USB keyborad that give me usb_submit_urb(ctrl) failed: -1 error when I plugin it. and I need to wait for 10s for this device to be ready. by adding this quirks, the usb keyborad is usable right after plugin Signed-off-by: Wangzhao Cai microcai

[PATCH] [ipc/shm] make shmget with IPC_PRIVATE initially created with SHM_DEST

2012-08-03 Thread microcai
The problem is SysV SHM is that , it will cause kernel resource leak. Initailly set shm mode to SHM_DEST when create with key_t IPC_PRIVATE, then the resource leak is fixed. If program want the shmid live longer, they will probably use non IPC_PRIVATE nor call shmctl that remove SHM_DEST bit.

[PATCH] [ipc/shm] make shmget with IPC_PRIVATE initially created with SHM_DEST

2012-08-03 Thread microcai
The problem is SysV SHM is that , it will cause kernel resource leak. Initailly set shm mode to SHM_DEST when create with key_t IPC_PRIVATE, then the resource leak is fixed. If program want the shmid live longer, they will probably use non IPC_PRIVATE nor call shmctl that remove SHM_DEST bit.