aaci.c (b675b3667f6729dcd1036a2a129b35445947f905) aaci.c (9e5ed094c89e55fbf11d2e81d60be98eb12346c0)
1/*
2 * linux/sound/arm/aaci.c - ARM PrimeCell AACI PL041 driver
3 *
4 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

--- 1096 unchanged lines hidden (view full) ---

1105 },
1106 .probe = aaci_probe,
1107 .remove = __devexit_p(aaci_remove),
1108 .suspend = aaci_suspend,
1109 .resume = aaci_resume,
1110 .id_table = aaci_ids,
1111};
1112
1/*
2 * linux/sound/arm/aaci.c - ARM PrimeCell AACI PL041 driver
3 *
4 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

--- 1096 unchanged lines hidden (view full) ---

1105 },
1106 .probe = aaci_probe,
1107 .remove = __devexit_p(aaci_remove),
1108 .suspend = aaci_suspend,
1109 .resume = aaci_resume,
1110 .id_table = aaci_ids,
1111};
1112
1113static int __init aaci_init(void)
1114{
1115 return amba_driver_register(&aaci_driver);
1116}
1113module_amba_driver(aaci_driver);
1117
1114
1118static void __exit aaci_exit(void)
1119{
1120 amba_driver_unregister(&aaci_driver);
1121}
1122
1123module_init(aaci_init);
1124module_exit(aaci_exit);
1125
1126MODULE_LICENSE("GPL");
1127MODULE_DESCRIPTION("ARM PrimeCell PL041 Advanced Audio CODEC Interface driver");
1115MODULE_LICENSE("GPL");
1116MODULE_DESCRIPTION("ARM PrimeCell PL041 Advanced Audio CODEC Interface driver");