Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 691
b: refs/heads/master
c: b97b77c
h: refs/heads/master
i:
  689: 3e20af6
  687: 91c2d25
v: v3
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed May 1, 2005
1 parent 77bff4b commit 3628f94
Show file tree
Hide file tree
Showing 6 changed files with 240 additions and 176 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: 80f9507886076de0cadfdf2b87701e68156829c2
refs/heads/master: b97b77cca627b2e3e6d0015e2e14b1d1c12de0c8
16 changes: 8 additions & 8 deletions trunk/arch/um/drivers/chan_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,58 +22,58 @@
#ifdef CONFIG_NOCONFIG_CHAN
static void *not_configged_init(char *str, int device, struct chan_opts *opts)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
return(NULL);
}

static int not_configged_open(int input, int output, int primary, void *data,
char **dev_out)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
return(-ENODEV);
}

static void not_configged_close(int fd, void *data)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
}

static int not_configged_read(int fd, char *c_out, void *data)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
return(-EIO);
}

static int not_configged_write(int fd, const char *buf, int len, void *data)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
return(-EIO);
}

static int not_configged_console_write(int fd, const char *buf, int len,
void *data)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
return(-EIO);
}

static int not_configged_window_size(int fd, void *data, unsigned short *rows,
unsigned short *cols)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
return(-ENODEV);
}

static void not_configged_free(void *data)
{
printk(KERN_ERR "Using a channel type which is configured out of "
printf(KERN_ERR "Using a channel type which is configured out of "
"UML\n");
}

Expand Down
Loading

0 comments on commit 3628f94

Please sign in to comment.