2008-05-22 Till Straumann <strauman@slac.stanford.edu>

* vmeUniverse/vmeUniverse.c: fixed compiler warning;
	moved struct attributes as directed by gcc warning.
This commit is contained in:
Till Straumann
2008-05-22 23:17:58 +00:00
parent 4ac1d235c6
commit 527e2b8e81
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2008-05-22 Till Straumann <strauman@slac.stanford.edu>
* vmeUniverse/vmeUniverse.c: fixed compiler warning;
moved struct attributes as directed by gcc warning.
2008-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* bootcard.c: Add capability for bootcard.c BSP Initialization

View File

@@ -1563,8 +1563,9 @@ typedef struct VmeUniverseDmaListDescRec_ {
LERegister1 dummy2;
LERegister1 dcpp;
LERegister1 dummy3;
} VmeUniverseDmaListDescRec
__attribute__((aligned(32), __may_alias__));
} __attribute__((aligned(32), __may_alias__))
VmeUniverseDmaListDescRec;
typedef VmeUniverseDmaListDescRec *VmeUniverseDmaListDesc;
static void uni_desc_init (DmaDescriptor);