Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 127643
b: refs/heads/master
c: da2bdf9
h: refs/heads/master
i:
  127641: fec85a5
  127639: 844ada9
v: v3
  • Loading branch information
Roel Kluin authored and Linus Torvalds committed Jan 8, 2009
1 parent d5eee58 commit c95a1be
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 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: 9a8d5bb4ad829e66ab5428ccdce2cbc8ab0ac96c
refs/heads/master: da2bdf9a6ff40b10d77620d0d76b02a738c103cb
2 changes: 1 addition & 1 deletion trunk/drivers/char/pty.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

/* These are global because they are accessed in tty_io.c */
#ifdef CONFIG_UNIX98_PTYS
struct tty_driver *ptm_driver;
static struct tty_driver *ptm_driver;
static struct tty_driver *pts_driver;
#endif

Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/char/vt.c
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,7 @@ int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows)
* Takes the console sem and the called methods then take the tty
* termios_mutex and the tty ctrl_lock in that order.
*/

int vt_resize(struct tty_struct *tty, struct winsize *ws)
static int vt_resize(struct tty_struct *tty, struct winsize *ws)
{
struct vc_data *vc = tty->driver_data;
int ret;
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/firmware/memmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ struct memmap_attribute {
ssize_t (*show)(struct firmware_map_entry *entry, char *buf);
};

struct memmap_attribute memmap_start_attr = __ATTR_RO(start);
struct memmap_attribute memmap_end_attr = __ATTR_RO(end);
struct memmap_attribute memmap_type_attr = __ATTR_RO(type);
static struct memmap_attribute memmap_start_attr = __ATTR_RO(start);
static struct memmap_attribute memmap_end_attr = __ATTR_RO(end);
static struct memmap_attribute memmap_type_attr = __ATTR_RO(type);

/*
* These are default attributes that are added for every memmap entry.
Expand Down

0 comments on commit c95a1be

Please sign in to comment.