diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-04-29 04:02:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:24 -0400 |
commit | 098ef1c0ea7b1b3ff9d89364af5ebc5b672cf932 (patch) | |
tree | 2a7bb997f3476dc3dbec8b7148ea3868fb8f1665 /include/linux/nbd.h | |
parent | d71a6d7332e5881a65249f4fb97b0db3c61dd5ec (diff) |
nbd: delete superfluous test for __GNUC__
Since <linux/compiler.h> already tests for __GNUC__, there's no point in nbd.h
repeating that test.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Cc: Paul Clements <paul.clements@steeleye.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/nbd.h')
-rw-r--r-- | include/linux/nbd.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/linux/nbd.h b/include/linux/nbd.h index 69075517c511..155719dab813 100644 --- a/include/linux/nbd.h +++ b/include/linux/nbd.h | |||
@@ -88,11 +88,7 @@ struct nbd_request { | |||
88 | char handle[8]; | 88 | char handle[8]; |
89 | __be64 from; | 89 | __be64 from; |
90 | __be32 len; | 90 | __be32 len; |
91 | } | 91 | } __attribute__ ((packed)); |
92 | #ifdef __GNUC__ | ||
93 | __attribute__ ((packed)) | ||
94 | #endif | ||
95 | ; | ||
96 | 92 | ||
97 | /* | 93 | /* |
98 | * This is the reply packet that nbd-server sends back to the client after | 94 | * This is the reply packet that nbd-server sends back to the client after |