s390/facilities: do not generate DWORDS define anymore
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Wed, 29 Jun 2016 22:48:42 +0000 (00:48 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Sun, 31 Jul 2016 09:27:59 +0000 (05:27 -0400)
The architecture level set code has been converted to C and doesn't
need a define to figure out array sizes. Since the old code was the
only user of the DWORDS define, we can get rid of it again.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Reviewed-by: Sascha Silbe <silbe@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/tools/gen_facilities.c

index e2660d27889b6da2a988b34d4bf8752a7da1e35d..fe4e6c910dd727b1c2ff81e701bfa8a7c1580d03 100644 (file)
@@ -39,7 +39,6 @@ static void print_facility_list(struct facility_def *def)
        printf("#define %s ", def->name);
        for (i = 0; i <= high; i++)
                printf("_AC(0x%016llx,UL)%c", array[i], i < high ? ',' : '\n');
-       printf("#define %s_DWORDS %d\n", def->name, high + 1);
        free(array);
 }