Преглед изворни кода

[PATCH] bogus function type in qdio

In qdio_get_micros() volatile in return type is plain noise (even with old
gccisms it would make no sense - noreturn function returning __u64 is a
bit odd ;-)

Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Al Viro пре 20 година
родитељ
комит
a46206e74e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      drivers/s390/cio/qdio.c

+ 1 - 1
drivers/s390/cio/qdio.c

@@ -112,7 +112,7 @@ qdio_min(int a,int b)
 
 
 /***************** SCRUBBER HELPER ROUTINES **********************/
 /***************** SCRUBBER HELPER ROUTINES **********************/
 
 
-static inline volatile __u64 
+static inline __u64 
 qdio_get_micros(void)
 qdio_get_micros(void)
 {
 {
         return (get_clock() >> 10); /* time>>12 is microseconds */
         return (get_clock() >> 10); /* time>>12 is microseconds */