mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
More minor const/static/include fixes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27652 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
52e67f3366
commit
befffc877d
4 changed files with 7 additions and 4 deletions
|
|
@ -85,14 +85,14 @@ int tenthdb2mixer(int db)
|
|||
/* ------------------------------------------------- */
|
||||
|
||||
static int uda1380_write_reg(unsigned char reg, unsigned short value);
|
||||
unsigned short uda1380_regs[0x30];
|
||||
short recgain_mic;
|
||||
short recgain_line;
|
||||
static unsigned short uda1380_regs[0x30];
|
||||
static short recgain_mic;
|
||||
static short recgain_line;
|
||||
|
||||
/* Definition of a playback configuration to start with */
|
||||
|
||||
#define NUM_DEFAULT_REGS 13
|
||||
unsigned short uda1380_defaults[2*NUM_DEFAULT_REGS] =
|
||||
static const unsigned short uda1380_defaults[2*NUM_DEFAULT_REGS] =
|
||||
{
|
||||
REG_0, EN_DAC | EN_INT | EN_DEC |
|
||||
#ifdef USE_WSPLL
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
#include "system.h"
|
||||
#include "power.h"
|
||||
#include "pcf50606.h"
|
||||
#include "ata-target.h"
|
||||
|
||||
void ata_reset(void)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
#include "cpu.h"
|
||||
#include "system.h"
|
||||
#include "usb.h"
|
||||
#include "usb-target.h"
|
||||
|
||||
void usb_init_device(void)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
#include "system.h"
|
||||
#include "kernel.h"
|
||||
#include "usb.h"
|
||||
#include "usb-target.h"
|
||||
|
||||
void usb_init_device(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue