ie-rcv.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. size_t iesize;
  33. /* Is there enough data to decode it? */
  34. if (evt->notif.size < sizeof(*iercv)) {
  35. dev_err(dev, "IE Received notification: Not enough data to "
  36. "decode (%zu vs %zu bytes needed)\n",
  37. evt->notif.size, sizeof(*iercv));
  38. goto error;
  39. }
  40. iercv = container_of(evt->notif.rceb, struct uwb_rc_evt_ie_rcv, rceb);
  41. iesize = le16_to_cpu(iercv->wIELength);
  42. dev_dbg(dev, "IE received, element ID=%d\n", iercv->IEData[0]);
  43. if (iercv->IEData[0] == UWB_RELINQUISH_REQUEST_IE) {
  44. dev_warn(dev, "unhandled Relinquish Request IE\n");
  45. }
  46. return 0;
  47. error:
  48. return result;
  49. }