staging: unisys: memregion: move struct memregion to memregion.h
authorJes Sorensen <Jes.Sorensen@redhat.com>
Tue, 5 May 2015 22:36:31 +0000 (18:36 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 May 2015 13:26:04 +0000 (15:26 +0200)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorutil/memregion.h
drivers/staging/unisys/visorutil/memregion_direct.c

index 1eb3a67..8f006fc 100644 (file)
 /* struct memregion is an opaque structure to users.
  * Fields are declared only in the implementation .c files.
  */
-struct memregion;
+struct memregion {
+       HOSTADDRESS physaddr;
+       ulong nbytes;
+       void __iomem *mapped;
+};
 
 struct memregion *visor_memregion_create(HOSTADDRESS physaddr, ulong nbytes);
 int visor_memregion_resize(struct memregion *memregion, ulong newsize);
index 96460d7..4ad25df 100644 (file)
 
 #define MYDRVNAME "memregion"
 
-struct memregion {
-       HOSTADDRESS physaddr;
-       ulong nbytes;
-       void __iomem *mapped;
-};
-
 static int mapit(struct memregion *memregion);
 static void unmapit(struct memregion *memregion);