From 2a402ae2c7bf5ce515ff5bfdd7d68f875686e289 Mon Sep 17 00:00:00 2001 From: Zachary T Welch <zw@superlucidity.net> Date: Thu, 3 Dec 2009 04:15:02 -0800 Subject: [PATCH] change #include "s3c24xx_regs.h" to <flash/nand/s3c24xx_regs.h> Changes from the flat namespace to heirarchical one. Instead of writing: #include "s3c24xx_regs.h" the following form should be used. #include <flash/nand/s3c24xx_regs.h> The exception is from .c files in the same directory. --- src/flash/nand/s3c24xx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flash/nand/s3c24xx.h b/src/flash/nand/s3c24xx.h index 0f899dad3..f89bf6e91 100644 --- a/src/flash/nand/s3c24xx.h +++ b/src/flash/nand/s3c24xx.h @@ -28,7 +28,7 @@ */ #include <flash/nand.h> -#include "s3c24xx_regs.h" +#include <flash/nand/s3c24xx_regs.h> struct s3c24xx_nand_controller { -- GitLab