fsl_dma.c (875065491fba8eb13219f16c36e79a6fb4e15c68) | fsl_dma.c (958e792c7c8f06a9e666adb0ed94fff2cf90156f) |
---|---|
1/* 2 * Freescale DMA ALSA SoC PCM driver 3 * 4 * Author: Timur Tabi <timur@freescale.com> 5 * 6 * Copyright 2007-2008 Freescale Semiconductor, Inc. This file is licensed 7 * under the terms of the GNU General Public License version 2. This 8 * program is licensed "as is" without any warranty of any kind, whether --- 839 unchanged lines hidden (view full) --- 848 dma_global_data.assigned[0] = 0; 849 dma_global_data.assigned[1] = 0; 850 851 initialized = 1; 852 return 1; 853} 854EXPORT_SYMBOL_GPL(fsl_dma_configure); 855 | 1/* 2 * Freescale DMA ALSA SoC PCM driver 3 * 4 * Author: Timur Tabi <timur@freescale.com> 5 * 6 * Copyright 2007-2008 Freescale Semiconductor, Inc. This file is licensed 7 * under the terms of the GNU General Public License version 2. This 8 * program is licensed "as is" without any warranty of any kind, whether --- 839 unchanged lines hidden (view full) --- 848 dma_global_data.assigned[0] = 0; 849 dma_global_data.assigned[1] = 0; 850 851 initialized = 1; 852 return 1; 853} 854EXPORT_SYMBOL_GPL(fsl_dma_configure); 855 |
856static int __devinit fsl_soc_platform_init(void) 857{ 858 return snd_soc_register_platform(&fsl_soc_platform); 859} 860module_init(fsl_soc_platform_init); 861 862static void __exit fsl_soc_platform_exit(void) 863{ 864 snd_soc_unregister_platform(&fsl_soc_platform); 865} 866module_exit(fsl_soc_platform_exit); 867 |
|
856MODULE_AUTHOR("Timur Tabi <timur@freescale.com>"); 857MODULE_DESCRIPTION("Freescale Elo DMA ASoC PCM module"); 858MODULE_LICENSE("GPL"); | 868MODULE_AUTHOR("Timur Tabi <timur@freescale.com>"); 869MODULE_DESCRIPTION("Freescale Elo DMA ASoC PCM module"); 870MODULE_LICENSE("GPL"); |