Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1692 → Rev 1691

/drivers/audio/a5536/geode.c
2,13 → 2,20
 
#define FORCED_PIO
 
#include <ddk.h>
#include "types.h"
 
#include "pci.h"
#include <syscall.h>
#include "syscall.h"
 
#include "geode.h"
 
#define DEBUG
 
#ifdef DEBUG
#define DBG(format,...) dbgprintf(format,##__VA_ARGS__)
#else
#define DBG(format,...)
#endif
 
#define BM0_IRQ 0x04
#define BM1_IRQ 0x08
463,7 → 470,7
};
 
 
u32_t drvEntry(int action, char *cmdline)
u32_t __stdcall drvEntry(int action)
{
u32_t retval;
 
472,15 → 479,17
if(action != 1)
return 0;
 
#ifdef DEBUG
if(!dbg_open("/rd/1/drivers/geode.log"))
{
printf("Can't open /rd/1/drivers/geode.log\nExit\n");
return 0;
}
#endif
 
if( FindPciDevice() == FALSE)
{
dbgprintf("Device not found\n");
DBG("Device not found\n");
return 0;
};
 
507,8 → 516,8
#define DEV_SET_MASTERVOL 6
#define DEV_GET_MASTERVOL 7
#define DEV_GET_INFO 8
#define DEV_GET_POS 9
 
 
int __stdcall srv_sound(ioctl_t *io)
{
u32_t *inp;
542,14 → 551,6
}
break;
 
case DEV_GET_POS:
if(io->out_size==4)
{
*outp = ctrl_read_32(0x60)>>2;
return 0;
}
break;
 
default:
return ERR_PARAM;
};