cregit-Linux how code gets into the kernel

Release 4.7 drivers/usb/wusbcore/wa-hc.c

/*
 * Wire Adapter Host Controller Driver
 * Common items to HWA and DWA based HCDs
 *
 * Copyright (C) 2005-2006 Intel Corporation
 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 *
 *
 * FIXME: docs
 */
#include <linux/slab.h>
#include <linux/module.h>
#include "wusbhc.h"
#include "wa-hc.h"

/**
 * Assumes
 *
 * wa->usb_dev and wa->usb_iface initialized and refcounted,
 * wa->wa_descr initialized.
 */

int wa_create(struct wahc *wa, struct usb_interface *iface, kernel_ulong_t quirks) { int result; struct device *dev = &iface->dev; result = wa_rpipes_create(wa); if (result < 0) goto error_rpipes_create; wa->quirks = quirks; /* Fill up Data Transfer EP pointers */ wa->dti_epd = &iface->cur_altsetting->endpoint[1].desc; wa->dto_epd = &iface->cur_altsetting->endpoint[2].desc; wa->dti_buf_size = usb_endpoint_maxp(wa->dti_epd); wa->dti_buf = kmalloc(wa->dti_buf_size, GFP_KERNEL); if (wa->dti_buf == NULL) { result = -ENOMEM; goto error_dti_buf_alloc; } result = wa_nep_create(wa, iface); if (result < 0) { dev_err(dev, "WA-CDS: can't initialize notif endpoint: %d\n", result); goto error_nep_create; } return 0; error_nep_create: kfree(wa->dti_buf); error_dti_buf_alloc: wa_rpipes_destroy(wa); error_rpipes_create: return result; }

Contributors

PersonTokensPropCommitsCommitProp
inaky perez-gonzalezinaky perez-gonzalez15786.74%120.00%
thomas pugliesethomas pugliese168.84%240.00%
julia lawalljulia lawall73.87%120.00%
kuninori morimotokuninori morimoto10.55%120.00%
Total181100.00%5100.00%

EXPORT_SYMBOL_GPL(wa_create);
void __wa_destroy(struct wahc *wa) { if (wa->dti_urb) { usb_kill_urb(wa->dti_urb); usb_put_urb(wa->dti_urb); } kfree(wa->dti_buf); wa_nep_destroy(wa); wa_rpipes_destroy(wa); }

Contributors

PersonTokensPropCommitsCommitProp
inaky perez-gonzalezinaky perez-gonzalez4897.96%150.00%
thomas pugliesethomas pugliese12.04%150.00%
Total49100.00%2100.00%

EXPORT_SYMBOL_GPL(__wa_destroy); /** * wa_reset_all - reset the WA device * @wa: the WA to be reset * * For HWAs the radio controller and all other PALs are also reset. */
void wa_reset_all(struct wahc *wa) { /* FIXME: assuming HWA. */ wusbhc_reset_all(wa->wusb); }

Contributors

PersonTokensPropCommitsCommitProp
inaky perez-gonzalezinaky perez-gonzalez18100.00%1100.00%
Total18100.00%1100.00%

MODULE_AUTHOR("Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>"); MODULE_DESCRIPTION("Wireless USB Wire Adapter core"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
inaky perez-gonzalezinaky perez-gonzalez25789.24%114.29%
thomas pugliesethomas pugliese175.90%228.57%
julia lawalljulia lawall72.43%114.29%
paul gortmakerpaul gortmaker31.04%114.29%
tejun heotejun heo31.04%114.29%
kuninori morimotokuninori morimoto10.35%114.29%
Total288100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}