Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 44636
b: refs/heads/master
c: 2bb71b5
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Dec 17, 2006
1 parent 5292a23 commit c0538b7
Show file tree
Hide file tree
Showing 3 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: 4fb23e439ce09157d64b89a21061b9fc08f2b495
refs/heads/master: 2bb71b5a44bfbe0d2066ee041149995f43b52d12
2 changes: 1 addition & 1 deletion trunk/drivers/input/keyboard/amikbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static irqreturn_t amikbd_interrupt(int irq, void *dummy)

static int __init amikbd_init(void)
{
int i, j;
int i, j, err;

if (!AMIGAHW_PRESENT(AMI_KEYBOARD))
return -ENODEV;
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/scsi/sun3_NCR5380.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ static struct scsi_host_template *the_template = NULL;
(struct NCR5380_hostdata *)(in)->hostdata
#define HOSTDATA(in) ((struct NCR5380_hostdata *)(in)->hostdata)

#define NEXT(cmd) ((struct scsi_cmnd *)((cmd)->host_scribble))
#define NEXT(cmd) (*(struct scsi_cmnd **)&((cmd)->host_scribble))
#define NEXTADDR(cmd) ((struct scsi_cmnd **)&((cmd)->host_scribble))

#define HOSTNO instance->host_no
Expand Down Expand Up @@ -650,7 +650,7 @@ __inline__ void NCR5380_print_phase(struct Scsi_Host *instance) { };
#include <linux/interrupt.h>

static volatile int main_running = 0;
static DECLARE_WORK(NCR5380_tqueue, (void (*)(void*))NCR5380_main, NULL);
static DECLARE_WORK(NCR5380_tqueue, NCR5380_main);

static __inline__ void queue_main(void)
{
Expand Down Expand Up @@ -1031,7 +1031,7 @@ static int NCR5380_queue_command(struct scsi_cmnd *cmd,
* reenable them. This prevents reentrancy and kernel stack overflow.
*/

static void NCR5380_main (void *bl)
static void NCR5380_main (struct work_struct *bl)
{
struct scsi_cmnd *tmp, *prev;
struct Scsi_Host *instance = first_instance;
Expand Down

0 comments on commit c0538b7

Please sign in to comment.