common: Use complete path in inclusion

Subprojects usually have own "asm" directory,
so to eliminate collision specify complete path.

travis-ci: success for common: Use complete path in inclusion
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
This commit is contained in:
Cyrill Gorcunov 2016-10-25 16:59:00 +03:00 committed by Pavel Emelyanov
parent ab4a1bae1f
commit e216512e6a
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#ifndef __CR_COMMON_BITOPS_H__
#define __CR_COMMON_BITOPS_H__
#include "asm/bitops.h"
#include "common/asm/bitops.h"
#endif

View file

@ -1,4 +1,4 @@
#ifndef __CR_COMMON_PAGE_H__
#define __CR_COMMON_PAGE_H__
#include "asm/page.h"
#include "common/asm/page.h"
#endif