[PATCH] AVR32: Implement and export __raw_{read,write}s[bwl]
Implement __raw_readsb and __raw_writesb. Export __raw_reads[bwl] and __raw_writes[bwl] for use by modules. Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
065834ab39
commit
d68041cc9f
@@ -7,6 +7,7 @@
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*/
|
||||
#include <linux/io.h>
|
||||
#include <linux/module.h>
|
||||
|
||||
#include <asm/checksum.h>
|
||||
@@ -53,3 +54,11 @@ EXPORT_SYMBOL(find_next_zero_bit);
|
||||
EXPORT_SYMBOL(find_first_bit);
|
||||
EXPORT_SYMBOL(find_next_bit);
|
||||
EXPORT_SYMBOL(generic_find_next_zero_le_bit);
|
||||
|
||||
/* I/O primitives (lib/io-*.S) */
|
||||
EXPORT_SYMBOL(__raw_readsb);
|
||||
EXPORT_SYMBOL(__raw_readsw);
|
||||
EXPORT_SYMBOL(__raw_readsl);
|
||||
EXPORT_SYMBOL(__raw_writesb);
|
||||
EXPORT_SYMBOL(__raw_writesw);
|
||||
EXPORT_SYMBOL(__raw_writesl);
|
||||
|
Reference in New Issue
Block a user