Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 165435
b: refs/heads/master
c: 7c32928
h: refs/heads/master
i:
  165433: e787646
  165431: 2ab7377
v: v3
  • Loading branch information
Ingo Molnar authored and Dave Airlie committed Sep 22, 2009
1 parent 56f8c3e commit 28e3888
Show file tree
Hide file tree
Showing 801 changed files with 15,501 additions and 54,623 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b09a75fc5e77b7c58d097236f89b1ff72dcdb562
refs/heads/master: 7c329288d72e025db4feac65f0fed95fb3e3ef1c
36 changes: 0 additions & 36 deletions trunk/Documentation/ABI/stable/sysfs-class-backlight

This file was deleted.

23 changes: 0 additions & 23 deletions trunk/Documentation/ABI/testing/sysfs-class-lcd

This file was deleted.

28 changes: 0 additions & 28 deletions trunk/Documentation/ABI/testing/sysfs-class-led

This file was deleted.

1 change: 0 additions & 1 deletion trunk/Documentation/ABI/testing/sysfs-gpio
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Description:
/gpioN ... for each exported GPIO #N
/value ... always readable, writes fail for input GPIOs
/direction ... r/w as: in, out (default low); write: high, low
/edge ... r/w as: none, falling, rising, both
/gpiochipN ... for each gpiochip; #N is its first GPIO
/base ... (r/o) same as N
/label ... (r/o) descriptive, not necessarily unique
Expand Down
52 changes: 0 additions & 52 deletions trunk/Documentation/ABI/testing/sysfs-platform-asus-laptop

This file was deleted.

50 changes: 0 additions & 50 deletions trunk/Documentation/ABI/testing/sysfs-platform-eeepc-laptop

This file was deleted.

6 changes: 5 additions & 1 deletion trunk/Documentation/Intel-IOMMU.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ Graphics Problems?
------------------
If you encounter issues with graphics devices, you can try adding
option intel_iommu=igfx_off to turn off the integrated graphics engine.
If this fixes anything, please ensure you file a bug reporting the problem.

If it happens to be a PCI device included in the INCLUDE_ALL Engine,
then try enabling CONFIG_DMAR_GFX_WA to setup a 1-1 map. We hear
graphics drivers may be in process of using DMA api's in the near
future and at that time this option can be yanked out.

Some exceptions to IOVA
-----------------------
Expand Down
12 changes: 6 additions & 6 deletions trunk/Documentation/accounting/getdelays.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static int create_nl_socket(int protocol)
}


static int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
__u8 genl_cmd, __u16 nla_type,
void *nla_data, int nla_len)
{
Expand Down Expand Up @@ -160,7 +160,7 @@ static int send_cmd(int sd, __u16 nlmsg_type, __u32 nlmsg_pid,
* Probe the controller in genetlink to find the family id
* for the TASKSTATS family
*/
static int get_family_id(int sd)
int get_family_id(int sd)
{
struct {
struct nlmsghdr n;
Expand Down Expand Up @@ -190,7 +190,7 @@ static int get_family_id(int sd)
return id;
}

static void print_delayacct(struct taskstats *t)
void print_delayacct(struct taskstats *t)
{
printf("\n\nCPU %15s%15s%15s%15s\n"
" %15llu%15llu%15llu%15llu\n"
Expand All @@ -216,15 +216,15 @@ static void print_delayacct(struct taskstats *t)
(unsigned long long)t->freepages_delay_total);
}

static void task_context_switch_counts(struct taskstats *t)
void task_context_switch_counts(struct taskstats *t)
{
printf("\n\nTask %15s%15s\n"
" %15llu%15llu\n",
"voluntary", "nonvoluntary",
(unsigned long long)t->nvcsw, (unsigned long long)t->nivcsw);
}

static void print_cgroupstats(struct cgroupstats *c)
void print_cgroupstats(struct cgroupstats *c)
{
printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, "
"uninterruptible %llu\n", (unsigned long long)c->nr_sleeping,
Expand All @@ -235,7 +235,7 @@ static void print_cgroupstats(struct cgroupstats *c)
}


static void print_ioacct(struct taskstats *t)
void print_ioacct(struct taskstats *t)
{
printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n",
t->ac_comm,
Expand Down
22 changes: 11 additions & 11 deletions trunk/Documentation/auxdisplay/cfag12864b-example.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ unsigned char cfag12864b_buffer[CFAG12864B_SIZE];
* Unable to open: return = -1
* Unable to mmap: return = -2
*/
static int cfag12864b_init(char *path)
int cfag12864b_init(char *path)
{
cfag12864b_fd = open(path, O_RDWR);
if (cfag12864b_fd == -1)
Expand All @@ -81,7 +81,7 @@ static int cfag12864b_init(char *path)
/*
* exit a cfag12864b framebuffer device
*/
static void cfag12864b_exit(void)
void cfag12864b_exit(void)
{
munmap(cfag12864b_mem, CFAG12864B_SIZE);
close(cfag12864b_fd);
Expand All @@ -90,7 +90,7 @@ static void cfag12864b_exit(void)
/*
* set (x, y) pixel
*/
static void cfag12864b_set(unsigned char x, unsigned char y)
void cfag12864b_set(unsigned char x, unsigned char y)
{
if (CFAG12864B_CHECK(x, y))
cfag12864b_buffer[CFAG12864B_ADDRESS(x, y)] |=
Expand All @@ -100,7 +100,7 @@ static void cfag12864b_set(unsigned char x, unsigned char y)
/*
* unset (x, y) pixel
*/
static void cfag12864b_unset(unsigned char x, unsigned char y)
void cfag12864b_unset(unsigned char x, unsigned char y)
{
if (CFAG12864B_CHECK(x, y))
cfag12864b_buffer[CFAG12864B_ADDRESS(x, y)] &=
Expand All @@ -113,7 +113,7 @@ static void cfag12864b_unset(unsigned char x, unsigned char y)
* Pixel off: return = 0
* Pixel on: return = 1
*/
static unsigned char cfag12864b_isset(unsigned char x, unsigned char y)
unsigned char cfag12864b_isset(unsigned char x, unsigned char y)
{
if (CFAG12864B_CHECK(x, y))
if (cfag12864b_buffer[CFAG12864B_ADDRESS(x, y)] &
Expand All @@ -126,7 +126,7 @@ static unsigned char cfag12864b_isset(unsigned char x, unsigned char y)
/*
* not (x, y) pixel
*/
static void cfag12864b_not(unsigned char x, unsigned char y)
void cfag12864b_not(unsigned char x, unsigned char y)
{
if (cfag12864b_isset(x, y))
cfag12864b_unset(x, y);
Expand All @@ -137,7 +137,7 @@ static void cfag12864b_not(unsigned char x, unsigned char y)
/*
* fill (set all pixels)
*/
static void cfag12864b_fill(void)
void cfag12864b_fill(void)
{
unsigned short i;

Expand All @@ -148,7 +148,7 @@ static void cfag12864b_fill(void)
/*
* clear (unset all pixels)
*/
static void cfag12864b_clear(void)
void cfag12864b_clear(void)
{
unsigned short i;

Expand All @@ -162,7 +162,7 @@ static void cfag12864b_clear(void)
* Pixel off: src[i] = 0
* Pixel on: src[i] > 0
*/
static void cfag12864b_format(unsigned char * matrix)
void cfag12864b_format(unsigned char * matrix)
{
unsigned char i, j, n;

Expand All @@ -182,7 +182,7 @@ static void cfag12864b_format(unsigned char * matrix)
/*
* blit buffer to lcd
*/
static void cfag12864b_blit(void)
void cfag12864b_blit(void)
{
memcpy(cfag12864b_mem, cfag12864b_buffer, CFAG12864B_SIZE);
}
Expand All @@ -198,7 +198,7 @@ static void cfag12864b_blit(void)

#define EXAMPLES 6

static void example(unsigned char n)
void example(unsigned char n)
{
unsigned short i, j;
unsigned char matrix[CFAG12864B_WIDTH * CFAG12864B_HEIGHT];
Expand Down
Loading

0 comments on commit 28e3888

Please sign in to comment.