w1_smem.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * w1_smem.c
  3. *
  4. * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
  5. *
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the smems of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <asm/types.h>
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/moduleparam.h>
  25. #include <linux/device.h>
  26. #include <linux/types.h>
  27. #include <linux/w1.h>
  28. #define W1_FAMILY_SMEM_01 0x01
  29. #define W1_FAMILY_SMEM_81 0x81
  30. static struct w1_family w1_smem_family_01 = {
  31. .fid = W1_FAMILY_SMEM_01,
  32. };
  33. static struct w1_family w1_smem_family_81 = {
  34. .fid = W1_FAMILY_SMEM_81,
  35. };
  36. static int __init w1_smem_init(void)
  37. {
  38. int err;
  39. err = w1_register_family(&w1_smem_family_01);
  40. if (err)
  41. return err;
  42. err = w1_register_family(&w1_smem_family_81);
  43. if (err) {
  44. w1_unregister_family(&w1_smem_family_01);
  45. return err;
  46. }
  47. return 0;
  48. }
  49. static void __exit w1_smem_fini(void)
  50. {
  51. w1_unregister_family(&w1_smem_family_01);
  52. w1_unregister_family(&w1_smem_family_81);
  53. }
  54. module_init(w1_smem_init);
  55. module_exit(w1_smem_fini);
  56. MODULE_AUTHOR("Evgeniy Polyakov <zbr@ioremap.net>");
  57. MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol, 64bit memory family.");
  58. MODULE_LICENSE("GPL");
  59. MODULE_ALIAS("w1-family-" __stringify(W1_FAMILY_SMEM_01));
  60. MODULE_ALIAS("w1-family-" __stringify(W1_FAMILY_SMEM_81));