Skip to content

Commit

Permalink
arch/um/kernel/irq.c: clean up some functions
Browse files Browse the repository at this point in the history
Make activate_fd() and free_irq_by_irq_and_dev() static.  Remove
init_aio_irq() since it has no users.

Cc: Jeff Dike <[email protected]>
Signed-off-by: WANG Cong <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
congwang authored and torvalds committed Jul 24, 2008
1 parent ed62f77 commit 4c182ae
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 37 deletions.
2 changes: 0 additions & 2 deletions arch/um/include/irq_kern.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ extern int um_request_irq(unsigned int irq, int fd, int type,
irq_handler_t handler,
unsigned long irqflags, const char * devname,
void *dev_id);
extern int init_aio_irq(int irq, char *name,
irq_handler_t handler);

#endif

Expand Down
2 changes: 0 additions & 2 deletions arch/um/include/irq_user.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ struct irq_fd {
enum { IRQ_READ, IRQ_WRITE };

extern void sigio_handler(int sig, struct uml_pt_regs *regs);
extern int activate_fd(int irq, int fd, int type, void *dev_id);
extern void free_irq_by_irq_and_dev(unsigned int irq, void *dev_id);
extern void free_irq_by_fd(int fd);
extern void reactivate_fd(int fd, int irqnum);
extern void deactivate_fd(int fd, int irqnum);
Expand Down
35 changes: 2 additions & 33 deletions arch/um/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void sigio_handler(int sig, struct uml_pt_regs *regs)

static DEFINE_SPINLOCK(irq_lock);

int activate_fd(int irq, int fd, int type, void *dev_id)
static int activate_fd(int irq, int fd, int type, void *dev_id)
{
struct pollfd *tmp_pfd;
struct irq_fd *new_fd, *irq_fd;
Expand Down Expand Up @@ -216,7 +216,7 @@ static int same_irq_and_dev(struct irq_fd *irq, void *d)
return ((irq->irq == data->irq) && (irq->id == data->dev));
}

void free_irq_by_irq_and_dev(unsigned int irq, void *dev)
static void free_irq_by_irq_and_dev(unsigned int irq, void *dev)
{
struct irq_and_dev data = ((struct irq_and_dev) { .irq = irq,
.dev = dev });
Expand Down Expand Up @@ -403,37 +403,6 @@ void __init init_IRQ(void)
}
}

int init_aio_irq(int irq, char *name, irq_handler_t handler)
{
int fds[2], err;

err = os_pipe(fds, 1, 1);
if (err) {
printk(KERN_ERR "init_aio_irq - os_pipe failed, err = %d\n",
-err);
goto out;
}

err = um_request_irq(irq, fds[0], IRQ_READ, handler,
IRQF_DISABLED | IRQF_SAMPLE_RANDOM, name,
(void *) (long) fds[0]);
if (err) {
printk(KERN_ERR "init_aio_irq - : um_request_irq failed, "
"err = %d\n",
err);
goto out_close;
}

err = fds[1];
goto out;

out_close:
os_close_file(fds[0]);
os_close_file(fds[1]);
out:
return err;
}

/*
* IRQ stack entry and exit:
*
Expand Down

0 comments on commit 4c182ae

Please sign in to comment.