diff options
author | Stefan Haberland <stefan.haberland@de.ibm.com> | 2007-04-27 10:01:53 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-04-27 10:01:45 -0400 |
commit | 6d4740c89c187ee8f5ac7355c4eeffda26493d1f (patch) | |
tree | 4653b4689f09324fe90f1bd7a0f92bf435261998 /drivers/s390/char/sclp_sdias.c | |
parent | 66b494a7178cbd84d8fc0e5f1e92d81fb6ec9f6e (diff) |
[S390] sclp: fix coding style.
Use only capital letters for defines.
Cc: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
Signed-off-by: Stefan Haberland <stefan.haberland@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/char/sclp_sdias.c')
-rw-r--r-- | drivers/s390/char/sclp_sdias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/s390/char/sclp_sdias.c b/drivers/s390/char/sclp_sdias.c index 06a4d0897232..52283daddaef 100644 --- a/drivers/s390/char/sclp_sdias.c +++ b/drivers/s390/char/sclp_sdias.c | |||
@@ -30,7 +30,7 @@ | |||
30 | static struct debug_info *sdias_dbf; | 30 | static struct debug_info *sdias_dbf; |
31 | 31 | ||
32 | static struct sclp_register sclp_sdias_register = { | 32 | static struct sclp_register sclp_sdias_register = { |
33 | .send_mask = EvTyp_SDIAS_Mask, | 33 | .send_mask = EVTYP_SDIAS_MASK, |
34 | }; | 34 | }; |
35 | 35 | ||
36 | struct sdias_evbuf { | 36 | struct sdias_evbuf { |
@@ -118,7 +118,7 @@ int sclp_sdias_blk_count(void) | |||
118 | 118 | ||
119 | sccb.hdr.length = sizeof(sccb); | 119 | sccb.hdr.length = sizeof(sccb); |
120 | sccb.evbuf.hdr.length = sizeof(struct sdias_evbuf); | 120 | sccb.evbuf.hdr.length = sizeof(struct sdias_evbuf); |
121 | sccb.evbuf.hdr.type = EvTyp_SDIAS; | 121 | sccb.evbuf.hdr.type = EVTYP_SDIAS; |
122 | sccb.evbuf.event_qual = EQ_SIZE; | 122 | sccb.evbuf.event_qual = EQ_SIZE; |
123 | sccb.evbuf.data_id = DI_FCP_DUMP; | 123 | sccb.evbuf.data_id = DI_FCP_DUMP; |
124 | sccb.evbuf.event_id = 4712; | 124 | sccb.evbuf.event_id = 4712; |
@@ -177,7 +177,7 @@ int sclp_sdias_copy(void *dest, int start_blk, int nr_blks) | |||
177 | 177 | ||
178 | sccb.hdr.length = sizeof(sccb); | 178 | sccb.hdr.length = sizeof(sccb); |
179 | sccb.evbuf.hdr.length = sizeof(struct sdias_evbuf); | 179 | sccb.evbuf.hdr.length = sizeof(struct sdias_evbuf); |
180 | sccb.evbuf.hdr.type = EvTyp_SDIAS; | 180 | sccb.evbuf.hdr.type = EVTYP_SDIAS; |
181 | sccb.evbuf.hdr.flags = 0; | 181 | sccb.evbuf.hdr.flags = 0; |
182 | sccb.evbuf.event_qual = EQ_STORE_DATA; | 182 | sccb.evbuf.event_qual = EQ_STORE_DATA; |
183 | sccb.evbuf.data_id = DI_FCP_DUMP; | 183 | sccb.evbuf.data_id = DI_FCP_DUMP; |