change #include "commands.h" to <jtag/commands.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "commands.h" the following form should be used. #include <jtag/commands.h> The exception is from .c files in the same directory.__archive__
parent
df0e90ec8c
commit
c9e448222c
|
@ -22,7 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
|
||||
|
||||
#if PARPORT_USE_PPDEV == 1
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
#include <usb.h>
|
||||
#include "usb_common.h"
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "bitbang.h"
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
|
||||
/**
|
||||
* Function bitbang_stableclocks
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef BITQ_H
|
||||
#define BITQ_H
|
||||
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
|
||||
struct bitq_interface {
|
||||
// function to enqueueing low level IO requests
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
/* project specific includes */
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
#include <helper/time_support.h>
|
||||
|
||||
#if IS_CYGWIN == 1
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
|
||||
|
||||
#if 1
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
#include "usb_common.h"
|
||||
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#ifndef MINIDRIVER_IMP_H
|
||||
#define MINIDRIVER_IMP_H
|
||||
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
|
||||
static inline void interface_jtag_alloc_in_value32(struct scan_field *field)
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
/* project specific includes */
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
#include "rlink.h"
|
||||
#include "rlink_st7.h"
|
||||
#include "rlink_ep1_cmd.h"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
#include "usb_common.h"
|
||||
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#endif
|
||||
|
||||
#include "interface.h"
|
||||
#include "commands.h"
|
||||
#include <jtag/commands.h>
|
||||
#include "usb_common.h"
|
||||
|
||||
//#define _VSLLINK_IN_DEBUG_MODE_
|
||||
|
|
Loading…
Reference in New Issue