Staging fixes for 3.12-rc3
Here are some staging driver fixes, MAINTAINER updates, and a new device id. All of these have been in the linux-next tree, and are pretty simple patches. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.21 (GNU/Linux) iEYEABECAAYFAlJIhOIACgkQMUfUDdst+ymDCACfbZh1D7ezxzJvwupZWybsaKFA Wh8AnApNsby1kTD5pMbRs23sjfF1paSv =sHK0 -----END PGP SIGNATURE----- Merge tag 'staging-3.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging Pull staging fixes from Greg KH: "Here are some staging driver fixes, MAINTAINER updates, and a new device id. All of these have been in the linux-next tree, and are pretty simple patches" * tag 'staging-3.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: staging: r8188eu: Add new device ID staging: imx-drm: Fix probe failure staging: vt6656: [BUG] iwctl_siwencodeext return if device not open staging: vt6656: [BUG] main_usb.c oops on device_close move flag earlier. staging: vt6656: rxtx.c [BUG] s_vGetFreeContext dead lock on null apTD. Staging: rtl8192u: r819xU_cmdpkt: checking NULL value after doing dev_alloc_skb staging: usbip: Orphan usbip staging: r8188eu: Add files for new drive: Cocci spatch "noderef" staging: r8188eu: Cocci spatch "noderef" staging: octeon-usb: Cocci spatch "noderef" staging: r8188eu: Add files for new drive: Cocci spatch "noderef" MAINTAINERS: staging: dgnc and dgap drivers: add maintainer staging: lustre: Cocci spatch "noderef"
This commit is contained in:
commit
31795c402b
12 changed files with 31 additions and 16 deletions
15
MAINTAINERS
15
MAINTAINERS
|
@ -2640,6 +2640,18 @@ F: include/linux/device-mapper.h
|
|||
F: include/linux/dm-*.h
|
||||
F: include/uapi/linux/dm-*.h
|
||||
|
||||
DIGI NEO AND CLASSIC PCI PRODUCTS
|
||||
M: Lidza Louina <lidza.louina@gmail.com>
|
||||
L: driverdev-devel@linuxdriverproject.org
|
||||
S: Maintained
|
||||
F: drivers/staging/dgnc/
|
||||
|
||||
DIGI EPCA PCI PRODUCTS
|
||||
M: Lidza Louina <lidza.louina@gmail.com>
|
||||
L: driverdev-devel@linuxdriverproject.org
|
||||
S: Maintained
|
||||
F: drivers/staging/dgap/
|
||||
|
||||
DIOLAN U2C-12 I2C DRIVER
|
||||
M: Guenter Roeck <linux@roeck-us.net>
|
||||
L: linux-i2c@vger.kernel.org
|
||||
|
@ -8725,9 +8737,8 @@ F: Documentation/hid/hiddev.txt
|
|||
F: drivers/hid/usbhid/
|
||||
|
||||
USB/IP DRIVERS
|
||||
M: Matt Mooney <mfm@muteddisk.com>
|
||||
L: linux-usb@vger.kernel.org
|
||||
S: Maintained
|
||||
S: Orphan
|
||||
F: drivers/staging/usbip/
|
||||
|
||||
USB ISP116X DRIVER
|
||||
|
|
|
@ -41,7 +41,6 @@ struct imx_drm_device {
|
|||
struct list_head encoder_list;
|
||||
struct list_head connector_list;
|
||||
struct mutex mutex;
|
||||
int references;
|
||||
int pipes;
|
||||
struct drm_fbdev_cma *fbhelper;
|
||||
};
|
||||
|
@ -241,8 +240,6 @@ struct drm_device *imx_drm_device_get(void)
|
|||
}
|
||||
}
|
||||
|
||||
imxdrm->references++;
|
||||
|
||||
return imxdrm->drm;
|
||||
|
||||
unwind_crtc:
|
||||
|
@ -280,8 +277,6 @@ void imx_drm_device_put(void)
|
|||
list_for_each_entry(enc, &imxdrm->encoder_list, list)
|
||||
module_put(enc->owner);
|
||||
|
||||
imxdrm->references--;
|
||||
|
||||
mutex_unlock(&imxdrm->mutex);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(imx_drm_device_put);
|
||||
|
@ -485,7 +480,7 @@ int imx_drm_add_crtc(struct drm_crtc *crtc,
|
|||
|
||||
mutex_lock(&imxdrm->mutex);
|
||||
|
||||
if (imxdrm->references) {
|
||||
if (imxdrm->drm->open_count) {
|
||||
ret = -EBUSY;
|
||||
goto err_busy;
|
||||
}
|
||||
|
@ -564,7 +559,7 @@ int imx_drm_add_encoder(struct drm_encoder *encoder,
|
|||
|
||||
mutex_lock(&imxdrm->mutex);
|
||||
|
||||
if (imxdrm->references) {
|
||||
if (imxdrm->drm->open_count) {
|
||||
ret = -EBUSY;
|
||||
goto err_busy;
|
||||
}
|
||||
|
@ -709,7 +704,7 @@ int imx_drm_add_connector(struct drm_connector *connector,
|
|||
|
||||
mutex_lock(&imxdrm->mutex);
|
||||
|
||||
if (imxdrm->references) {
|
||||
if (imxdrm->drm->open_count) {
|
||||
ret = -EBUSY;
|
||||
goto err_busy;
|
||||
}
|
||||
|
|
|
@ -1387,7 +1387,7 @@ echo_copyout_lsm (struct lov_stripe_md *lsm, void *_ulsm, int ulsm_nob)
|
|||
if (nob > ulsm_nob)
|
||||
return (-EINVAL);
|
||||
|
||||
if (copy_to_user (ulsm, lsm, sizeof(ulsm)))
|
||||
if (copy_to_user (ulsm, lsm, sizeof(*ulsm)))
|
||||
return (-EFAULT);
|
||||
|
||||
for (i = 0; i < lsm->lsm_stripe_count; i++) {
|
||||
|
|
|
@ -604,7 +604,7 @@ int cvmx_usb_initialize(struct cvmx_usb_state *state, int usb_port_number,
|
|||
}
|
||||
}
|
||||
|
||||
memset(usb, 0, sizeof(usb));
|
||||
memset(usb, 0, sizeof(*usb));
|
||||
usb->init_flags = flags;
|
||||
|
||||
/* Initialize the USB state structure */
|
||||
|
|
|
@ -907,7 +907,7 @@ u32 mp_query_psd(struct adapter *pAdapter, u8 *data)
|
|||
sscanf(data, "pts =%d, start =%d, stop =%d", &psd_pts, &psd_start, &psd_stop);
|
||||
}
|
||||
|
||||
_rtw_memset(data, '\0', sizeof(data));
|
||||
_rtw_memset(data, '\0', sizeof(*data));
|
||||
|
||||
i = psd_start;
|
||||
while (i < psd_stop) {
|
||||
|
|
|
@ -57,7 +57,7 @@ static void Init_ODM_ComInfo_88E(struct adapter *Adapter)
|
|||
u8 cut_ver, fab_ver;
|
||||
|
||||
/* Init Value */
|
||||
_rtw_memset(dm_odm, 0, sizeof(dm_odm));
|
||||
_rtw_memset(dm_odm, 0, sizeof(*dm_odm));
|
||||
|
||||
dm_odm->Adapter = Adapter;
|
||||
|
||||
|
|
|
@ -6973,7 +6973,7 @@ static int rtw_mp_ctx(struct net_device *dev,
|
|||
stop = strncmp(extra, "stop", 4);
|
||||
sscanf(extra, "count =%d, pkt", &count);
|
||||
|
||||
_rtw_memset(extra, '\0', sizeof(extra));
|
||||
_rtw_memset(extra, '\0', sizeof(*extra));
|
||||
|
||||
if (stop == 0) {
|
||||
bStartTest = 0; /* To set Stop */
|
||||
|
|
|
@ -54,6 +54,7 @@ static struct usb_device_id rtw_usb_id_tbl[] = {
|
|||
/*=== Customer ID ===*/
|
||||
/****** 8188EUS ********/
|
||||
{USB_DEVICE(0x8179, 0x07B8)}, /* Abocom - Abocom */
|
||||
{USB_DEVICE(0x2001, 0x330F)}, /* DLink DWA-125 REV D1 */
|
||||
{} /* Terminating entry */
|
||||
};
|
||||
|
||||
|
|
|
@ -37,6 +37,8 @@ rt_status SendTxCommandPacket(struct net_device *dev, void *pData, u32 DataLen)
|
|||
/* Get TCB and local buffer from common pool.
|
||||
(It is shared by CmdQ, MgntQ, and USB coalesce DataQ) */
|
||||
skb = dev_alloc_skb(USB_HWDESC_HEADER_LEN + DataLen + 4);
|
||||
if (!skb)
|
||||
return RT_STATUS_FAILURE;
|
||||
memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));
|
||||
tcb_desc = (cb_desc *)(skb->cb + MAX_DEV_ADDR_SIZE);
|
||||
tcb_desc->queue_index = TXCMD_QUEUE;
|
||||
|
|
|
@ -1634,6 +1634,9 @@ int iwctl_siwencodeext(struct net_device *dev, struct iw_request_info *info,
|
|||
if (pMgmt == NULL)
|
||||
return -EFAULT;
|
||||
|
||||
if (!(pDevice->flags & DEVICE_FLAGS_OPENED))
|
||||
return -ENODEV;
|
||||
|
||||
buf = kzalloc(sizeof(struct viawget_wpa_param), GFP_KERNEL);
|
||||
if (buf == NULL)
|
||||
return -ENOMEM;
|
||||
|
|
|
@ -1098,6 +1098,8 @@ static int device_close(struct net_device *dev)
|
|||
memset(pMgmt->abyCurrBSSID, 0, 6);
|
||||
pMgmt->eCurrState = WMAC_STATE_IDLE;
|
||||
|
||||
pDevice->flags &= ~DEVICE_FLAGS_OPENED;
|
||||
|
||||
device_free_tx_bufs(pDevice);
|
||||
device_free_rx_bufs(pDevice);
|
||||
device_free_int_bufs(pDevice);
|
||||
|
@ -1109,7 +1111,6 @@ static int device_close(struct net_device *dev)
|
|||
usb_free_urb(pDevice->pInterruptURB);
|
||||
|
||||
BSSvClearNodeDBTable(pDevice, 0);
|
||||
pDevice->flags &=(~DEVICE_FLAGS_OPENED);
|
||||
|
||||
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "device_close2 \n");
|
||||
|
||||
|
|
|
@ -148,6 +148,8 @@ static void *s_vGetFreeContext(struct vnt_private *pDevice)
|
|||
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"GetFreeContext()\n");
|
||||
|
||||
for (ii = 0; ii < pDevice->cbTD; ii++) {
|
||||
if (!pDevice->apTD[ii])
|
||||
return NULL;
|
||||
pContext = pDevice->apTD[ii];
|
||||
if (pContext->bBoolInUse == false) {
|
||||
pContext->bBoolInUse = true;
|
||||
|
|
Loading…
Reference in a new issue