/* * Wireless USB Host Controller * UWB Protocol Adaptation Layer (PAL) glue. * * Copyright (C) 2008 Cambridge Silicon Radio Ltd. * * 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, see <http://www.gnu.org/licenses/>. */ #include "wusbhc.h"
static void wusbhc_channel_changed(struct uwb_pal *pal, int channel) { struct wusbhc *wusbhc = container_of(pal, struct wusbhc, pal); dev_dbg(wusbhc->dev, "%s: channel = %d\n", __func__, channel); if (channel < 0) wusbhc_stop(wusbhc); else wusbhc_start(wusbhc); }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
david vrabel | david vrabel | 46 | 77.97% | 1 | 50.00% |
thomas pugliese | thomas pugliese | 13 | 22.03% | 1 | 50.00% |
Total | 59 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
david vrabel | david vrabel | 40 | 59.70% | 2 | 66.67% |
inaky perez-gonzalez | inaky perez-gonzalez | 27 | 40.30% | 1 | 33.33% |
Total | 67 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
inaky perez-gonzalez | inaky perez-gonzalez | 18 | 75.00% | 1 | 50.00% |
thomas pugliese | thomas pugliese | 6 | 25.00% | 1 | 50.00% |
Total | 24 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
david vrabel | david vrabel | 86 | 55.13% | 2 | 40.00% |
inaky perez-gonzalez | inaky perez-gonzalez | 50 | 32.05% | 1 | 20.00% |
thomas pugliese | thomas pugliese | 20 | 12.82% | 2 | 40.00% |
Total | 156 | 100.00% | 5 | 100.00% |