Skip to content

Commit

Permalink
[PATCH] pcmcia: hotplug event for PCMCIA socket devices
Browse files Browse the repository at this point in the history
Generate hotplug event for PCMCIA sockets being registered.

Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Dominik Brodowski authored and Linus Torvalds committed Jun 28, 2005
1 parent 840c2ac commit 3ee1393
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions drivers/pcmcia/cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1866,6 +1866,21 @@ int pcmcia_insert_card(struct pcmcia_socket *skt)
return ret;
} /* insert_card */

static int pcmcia_socket_hotplug(struct class_device *dev, char **envp,
int num_envp, char *buffer, int buffer_size)
{
struct pcmcia_socket *s = container_of(dev, struct pcmcia_socket, dev);
int i = 0, length = 0;

if (add_hotplug_env_var(envp, num_envp, &i, buffer, buffer_size,
&length, "SOCKET_NO=%u", s->sock))
return -ENOMEM;

envp[i] = NULL;

return 0;
}

/*======================================================================
OS-specific module glue goes here
Expand Down Expand Up @@ -1895,6 +1910,7 @@ EXPORT_SYMBOL(pcmcia_parse_events);

struct class pcmcia_socket_class = {
.name = "pcmcia_socket",
.hotplug = pcmcia_socket_hotplug,
.release = pcmcia_release_socket,
};
EXPORT_SYMBOL(pcmcia_socket_class);
Expand Down

0 comments on commit 3ee1393

Please sign in to comment.