~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to arch/sparc/include/asm/io.h

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#else
6
6
#include <asm/io_32.h>
7
7
#endif
 
8
 
 
9
/*
 
10
 * Defines used for both SPARC32 and SPARC64
 
11
 */
 
12
 
 
13
/* Big endian versions of memory read/write routines */
 
14
#define readb_be(__addr)        __raw_readb(__addr)
 
15
#define readw_be(__addr)        __raw_readw(__addr)
 
16
#define readl_be(__addr)        __raw_readl(__addr)
 
17
#define writeb_be(__b, __addr)  __raw_writeb(__b, __addr)
 
18
#define writel_be(__w, __addr)  __raw_writel(__w, __addr)
 
19
#define writew_be(__l, __addr)  __raw_writew(__l, __addr)
 
20
 
8
21
#endif