diff --git a/[refs] b/[refs] index dc8e051c991f..3f9dc81acbcf 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 9281acea6a3687ff0f262e0be31eac34895b95d7 +refs/heads/master: 5b78cc9ac8602baafebb75a09025ffb17d1aebc2 diff --git a/trunk/include/linux/time.h b/trunk/include/linux/time.h index 4bb05a829be9..ec3b0ced0afe 100644 --- a/trunk/include/linux/time.h +++ b/trunk/include/linux/time.h @@ -36,7 +36,8 @@ struct timezone { #define NSEC_PER_SEC 1000000000L #define FSEC_PER_SEC 1000000000000000L -static inline int timespec_equal(struct timespec *a, struct timespec *b) +static inline int timespec_equal(const struct timespec *a, + const struct timespec *b) { return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec); }