wilink_platform_data.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * This file is part of wl12xx
  3. *
  4. * Copyright (C) 2010-2011 Texas Instruments, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  18. * 02110-1301 USA
  19. *
  20. */
  21. #include <linux/module.h>
  22. #include <linux/err.h>
  23. #include <linux/wl12xx.h>
  24. static struct wl1251_platform_data *wl1251_platform_data;
  25. int __init wl1251_set_platform_data(const struct wl1251_platform_data *data)
  26. {
  27. if (wl1251_platform_data)
  28. return -EBUSY;
  29. if (!data)
  30. return -EINVAL;
  31. wl1251_platform_data = kmemdup(data, sizeof(*data), GFP_KERNEL);
  32. if (!wl1251_platform_data)
  33. return -ENOMEM;
  34. return 0;
  35. }
  36. struct wl1251_platform_data *wl1251_get_platform_data(void)
  37. {
  38. if (!wl1251_platform_data)
  39. return ERR_PTR(-ENODEV);
  40. return wl1251_platform_data;
  41. }
  42. EXPORT_SYMBOL(wl1251_get_platform_data);