trivial: NULL noise: drivers/mtd/tests/mtd_*test.c
[deliverable/linux.git] / drivers / staging / echo / mmx.h
index 35412efe61ce5b5478a41b175f753a4ab1e876a7..44e5cfebc18fc3fe40dacd472d9408a65c35ed4a 100644 (file)
@@ -27,7 +27,7 @@
  * values by ULL, lest they be truncated by the compiler)
  */
 
-typedef union {
+union mmx_t {
        long long q;            /* Quadword (64-bit) value */
        unsigned long long uq;  /* Unsigned Quadword */
        int d[2];               /* 2 Doubleword (32-bit) values */
@@ -37,12 +37,12 @@ typedef union {
        char b[8];              /* 8 Byte (8-bit) values */
        unsigned char ub[8];    /* 8 Unsigned Byte */
        float s[2];             /* Single-precision (32-bit) value */
-} mmx_t;                       /* On an 8-byte (64-bit) boundary */
+};                             /* On an 8-byte (64-bit) boundary */
 
 /* SSE registers */
-typedef union {
+union xmm_t {
        char b[16];
-} xmm_t;
+};
 
 #define         mmx_i2r(op,imm,reg) \
         __asm__ __volatile__ (#op " %0, %%" #reg \
This page took 0.025056 seconds and 5 git commands to generate.