Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3120 → Rev 3119

/drivers/include/linux/backlight.h
File deleted
/drivers/include/linux/delay.h
File deleted
/drivers/include/linux/fb.h
566,7 → 566,6
u32 flags;
};
 
extern int fb_notifier_call_chain(unsigned long val, void *v);
/*
* Pixmap structure definition
*
1086,11 → 1085,9
extern int fb_validate_mode(const struct fb_var_screeninfo *var,
struct fb_info *info);
extern int fb_parse_edid(unsigned char *edid, struct fb_var_screeninfo *var);
extern const unsigned char *fb_firmware_edid(struct device *device);
//extern const unsigned char *fb_firmware_edid(struct device *device);
extern void fb_edid_to_monspecs(unsigned char *edid,
struct fb_monspecs *specs);
extern void fb_edid_add_monspecs(unsigned char *edid,
struct fb_monspecs *specs);
extern void fb_destroy_modedb(struct fb_videomode *modedb);
extern int fb_find_mode_cvt(struct fb_videomode *mode, int margins, int rb);
extern unsigned char *fb_ddc_read(struct i2c_adapter *adapter);
/drivers/include/linux/mod_devicetable.h
118,9 → 118,6
__u8 bInterfaceSubClass;
__u8 bInterfaceProtocol;
 
/* Used for vendor-specific interface matches */
__u8 bInterfaceNumber;
 
/* not matched against */
kernel_ulong_t driver_info;
};
/drivers/include/linux/lockdep.h
386,8 → 386,6
 
#define lockdep_assert_held(l) do { } while (0)
 
#define lockdep_recursing(tsk) (0)
 
#endif /* !LOCKDEP */
 
#ifdef CONFIG_LOCK_STAT
/drivers/include/linux/string.h
1,7 → 1,12
#ifndef _LINUX_STRING_H_
#define _LINUX_STRING_H_
 
/* We don't want strings.h stuff being used by user stuff by accident */
 
#ifndef __KERNEL__
#include <string.h>
#else
 
#include <linux/compiler.h> /* for inline */
#include <linux/types.h> /* for size_t */
#include <linux/stddef.h> /* for NULL */
139,7 → 144,5
{
return strncmp(str, prefix, strlen(prefix)) == 0;
}
 
extern size_t memweight(const void *ptr, size_t bytes);
 
#endif
#endif /* _LINUX_STRING_H_ */
/drivers/include/linux/stddef.h
4,8 → 4,14
#include <linux/compiler.h>
 
#undef NULL
#if defined(__cplusplus)
#define NULL 0
#else
#define NULL ((void *)0)
#endif
 
#ifdef __KERNEL__
 
enum {
false = 0,
true = 1
17,4 → 23,6
#else
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#endif
#endif /* __KERNEL__ */
 
#endif
/drivers/include/ddk.h
19,7 → 19,6
 
#define ENTER() dbgprintf("enter %s\n",__FUNCTION__)
#define LEAVE() dbgprintf("leave %s\n",__FUNCTION__)
#define FAIL() dbgprintf("fail %s\n",__FUNCTION__)
 
typedef struct
{
/drivers/include/drm/drm_pciids.h
210,7 → 210,6
{0x1002, 0x6798, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI|RADEON_NEW_MEMMAP}, \
{0x1002, 0x6799, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI|RADEON_NEW_MEMMAP}, \
{0x1002, 0x679A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI|RADEON_NEW_MEMMAP}, \
{0x1002, 0x679B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI|RADEON_NEW_MEMMAP}, \
{0x1002, 0x679E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI|RADEON_NEW_MEMMAP}, \
{0x1002, 0x679F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_TAHITI|RADEON_NEW_MEMMAP}, \
{0x1002, 0x6800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_PITCAIRN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \