cregit-Linux how code gets into the kernel

Release 4.14 drivers/uwb/umc-drv.c

Directory: drivers/uwb
/*
 * UWB Multi-interface Controller driver management.
 *
 * Copyright (C) 2007 Cambridge Silicon Radio Ltd.
 *
 * This file is released under the GNU GPL v2.
 */
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/uwb/umc.h>


int __umc_driver_register(struct umc_driver *umc_drv, struct module *module, const char *mod_name) { umc_drv->driver.name = umc_drv->name; umc_drv->driver.owner = module; umc_drv->driver.mod_name = mod_name; umc_drv->driver.bus = &umc_bus_type; return driver_register(&umc_drv->driver); }

Contributors

PersonTokensPropCommitsCommitProp
David Vrabel64100.00%1100.00%
Total64100.00%1100.00%

EXPORT_SYMBOL_GPL(__umc_driver_register); /** * umc_driver_register - unregister a UMC capabiltity driver. * @umc_drv: pointer to the driver. */
void umc_driver_unregister(struct umc_driver *umc_drv) { driver_unregister(&umc_drv->driver); }

Contributors

PersonTokensPropCommitsCommitProp
David Vrabel18100.00%1100.00%
Total18100.00%1100.00%

EXPORT_SYMBOL_GPL(umc_driver_unregister);

Overall Contributors

PersonTokensPropCommitsCommitProp
David Vrabel10097.09%150.00%
Paul Gortmaker32.91%150.00%
Total103100.00%2100.00%
Directory: drivers/uwb
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.