target files shouldn't #include <target/...h>
Make these ".h" files adopt the same policy the ".c" files already follow: don't use <subsystem/...h> syntax for private interfaces. If we ever get reviewed/supported "public" interfaces they should come exclusively from some include/... directory; that'll be the time to switch to <...> syntax for any subsystem's own interfaces. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
@@ -19,11 +19,11 @@
|
||||
#ifndef ARMV7A_H
|
||||
#define ARMV7A_H
|
||||
|
||||
#include <target/arm_adi_v5.h>
|
||||
#include <target/arm.h>
|
||||
#include <target/armv4_5_mmu.h>
|
||||
#include <target/armv4_5_cache.h>
|
||||
#include <target/arm_dpm.h>
|
||||
#include "arm_adi_v5.h"
|
||||
#include "arm.h"
|
||||
#include "armv4_5_mmu.h"
|
||||
#include "armv4_5_cache.h"
|
||||
#include "arm_dpm.h"
|
||||
|
||||
enum
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user