2009-09-08 Mike Frysinger <michael.frysinger@analog.com>
* bfin/include/sys/_adi_platform.h: Convert __ASSEMBLY__ to __ASSEMBLER__. * bfin/include/sys/pll.h: Likewise
This commit is contained in:
parent
18384f4fdf
commit
580295f6a8
|
@ -1,3 +1,9 @@
|
||||||
|
2009-09-08 Mike Frysinger <michael.frysinger@analog.com>
|
||||||
|
|
||||||
|
* bfin/include/sys/_adi_platform.h: Convert __ASSEMBLY__ to
|
||||||
|
__ASSEMBLER__.
|
||||||
|
* bfin/include/sys/pll.h: Likewise
|
||||||
|
|
||||||
2009-09-08 Jie Zhang <jie.zhang@analog.com>
|
2009-09-08 Jie Zhang <jie.zhang@analog.com>
|
||||||
|
|
||||||
* bfin/Makefile.in (basiccrt.o, basiccrts.o): Don't use
|
* bfin/Makefile.in (basiccrt.o, basiccrts.o): Don't use
|
||||||
|
|
|
@ -12,13 +12,13 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Include appropriate header file for platform.
|
** Include appropriate header file for platform.
|
||||||
** Copyright (C) 2008 Analog Devices, Inc.
|
** Copyright (C) 2008, 2009 Analog Devices, Inc.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __ADI_PLATFORM_H
|
#ifndef __ADI_PLATFORM_H
|
||||||
#define __ADI_PLATFORM_H
|
#define __ADI_PLATFORM_H
|
||||||
|
|
||||||
#ifdef __ASSEMBLY__
|
#ifndef __ASSEMBLER__
|
||||||
|
|
||||||
#if defined (__ADSPBF531__)
|
#if defined (__ADSPBF531__)
|
||||||
#include <cdefBF531.h>
|
#include <cdefBF531.h>
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
#error Processor Type Not Supported
|
#error Processor Type Not Supported
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLER__ */
|
||||||
|
|
||||||
#endif /* __INC_BLACKFIN__ */
|
#endif /* __INC_BLACKFIN__ */
|
||||||
|
|
||||||
|
|
|
@ -14,11 +14,11 @@
|
||||||
*
|
*
|
||||||
* pll.h
|
* pll.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2008 Analog Devices, Inc.
|
* Copyright (C) 2008, 2009 Analog Devices, Inc.
|
||||||
*
|
*
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
#ifdef __ASSEMBLY__
|
#ifndef __ASSEMBLER__
|
||||||
#pragma once
|
#pragma once
|
||||||
#pragma system_header
|
#pragma system_header
|
||||||
#endif
|
#endif
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
#define NO_STARTUP_SET 0
|
#define NO_STARTUP_SET 0
|
||||||
#define MAX_IN_STARTUP 1
|
#define MAX_IN_STARTUP 1
|
||||||
|
|
||||||
#ifdef __ASSEMBLY__
|
#ifndef __ASSEMBLER__
|
||||||
|
|
||||||
enum clkctrl_t {
|
enum clkctrl_t {
|
||||||
/* no modification of PLL rates in CRT startup - default */
|
/* no modification of PLL rates in CRT startup - default */
|
||||||
|
@ -74,7 +74,7 @@ int pll_set_system_vco(int _msel, int _df, int _lockcnt);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLER__ */
|
||||||
|
|
||||||
#ifdef _MISRA_RULES
|
#ifdef _MISRA_RULES
|
||||||
#pragma diag(pop)
|
#pragma diag(pop)
|
||||||
|
|
Loading…
Reference in New Issue