ie-rcv.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Ultra Wide Band
  3. * IE Received notification handling.
  4. *
  5. * Copyright (C) 2008 Cambridge Silicon Radio Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License version
  9. * 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <linux/errno.h>
  20. #include <linux/module.h>
  21. #include <linux/device.h>
  22. #include <linux/bitmap.h>
  23. #include "uwb-internal.h"
  24. /*
  25. * Process an incoming IE Received notification.
  26. */
  27. int uwbd_evt_handle_rc_ie_rcv(struct uwb_event *evt)
  28. {
  29. int result = -EINVAL;
  30. struct device *dev = &evt->rc->uwb_dev.dev;
  31. struct uwb_rc_evt_ie_rcv *iercv;
  32. /* Is there enough data to decode it? */
  33. if (evt->notif.size < sizeof(*iercv)) {
  34. dev_err(dev, "IE Received notification: Not enough data to "
  35. "decode (%zu vs %zu bytes needed)\n",
  36. evt->notif.size, sizeof(*iercv));
  37. goto error;
  38. }
  39. iercv = container_of(evt->notif.rceb, struct uwb_rc_evt_ie_rcv, rceb);
  40. dev_dbg(dev, "IE received, element ID=%d\n", iercv->IEData[0]);
  41. if (iercv->IEData[0] == UWB_RELINQUISH_REQUEST_IE) {
  42. dev_warn(dev, "unhandled Relinquish Request IE\n");
  43. }
  44. return 0;
  45. error:
  46. return result;
  47. }