Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62603
b: refs/heads/master
c: 1ad528e
h: refs/heads/master
i:
  62601: 2e15a9a
  62599: 2b16583
v: v3
  • Loading branch information
Stephen Rothwell authored and Paul Mackerras committed Jul 22, 2007
1 parent d7558d2 commit f088ef9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: a6dfe1dc074cc2218b2e32f67ce3a1ed4f89b200
refs/heads/master: 1ad528ebfd1a32e33a7ade23a7e4eeb250ef64a7
8 changes: 4 additions & 4 deletions trunk/drivers/char/hvc_iseries.c
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ static void hvc_handle_event(struct HvLpEvent *event)
}
}

static int send_open(HvLpIndex remoteLp, void *sem)
static int __init send_open(HvLpIndex remoteLp, void *sem)
{
return HvCallEvent_signalLpEventFast(remoteLp,
HvLpEvent_Type_VirtualIo,
Expand All @@ -484,7 +484,7 @@ static int send_open(HvLpIndex remoteLp, void *sem)
0, 0, 0, 0);
}

static int hvc_vio_init(void)
static int __init hvc_vio_init(void)
{
atomic_t wait_flag;
int rc;
Expand Down Expand Up @@ -552,14 +552,14 @@ static int hvc_vio_init(void)
}
module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */

static void hvc_vio_exit(void)
static void __exit hvc_vio_exit(void)
{
vio_unregister_driver(&hvc_vio_driver);
}
module_exit(hvc_vio_exit);

/* the device tree order defines our numbering */
static int hvc_find_vtys(void)
static int __init hvc_find_vtys(void)
{
struct device_node *vty;
int num_found = 0;
Expand Down

0 comments on commit f088ef9

Please sign in to comment.