Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 69342
b: refs/heads/master
c: 43d39ae
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Oct 15, 2007
1 parent 8f17969 commit 535864f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 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: 84284d3c1d6372bc9ab496607661d230d9c45de4
refs/heads/master: 43d39ae0cf8f891c35e8316948229c7cbffa3994
2 changes: 0 additions & 2 deletions trunk/arch/m68k/atari/atakeyb.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/*
* linux/arch/m68k/atari/atakeyb.c
*
* Atari Keyboard driver for 680x0 Linux
*
* This file is subject to the terms and conditions of the GNU General Public
Expand Down
7 changes: 4 additions & 3 deletions trunk/drivers/input/keyboard/atakbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ static void atakbd_interrupt(unsigned char scancode, char down)

static int __init atakbd_init(void)
{
int i;
int i, error;

if (!MACH_IS_ATARI || !ATARIHW_PRESENT(ST_MFP))
return -EIO;
Expand Down Expand Up @@ -247,9 +247,10 @@ static int __init atakbd_init(void)
}

/* error check */
if (input_register_device(atakbd_dev)) {
error = input_register_device(atakbd_dev);
if (error) {
input_free_device(atakbd_dev);
return -ENOMEM;
return error;
}

atari_input_keyboard_interrupt_hook = atakbd_interrupt;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/mtd/maps/pxa2xx-flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>

#include <asm/io.h>
#include <asm/hardware.h>
#include <asm/cacheflush.h>

#include <asm/mach/flash.h>

static void pxa2xx_map_inval_cache(struct map_info *map, unsigned long from,
ssize_t len)
{
consistent_sync((char *)map->cached + from, len, DMA_FROM_DEVICE);
flush_ioremap_region(map->phys, map->cached, from, len);
}

struct pxa2xx_flash_info {
Expand Down
4 changes: 4 additions & 0 deletions trunk/drivers/scsi/gdth.c
Original file line number Diff line number Diff line change
Expand Up @@ -5213,6 +5213,10 @@ static int __init gdth_init(void)
#endif /* CONFIG_PCI */

TRACE2(("gdth_detect() %d controller detected\n", gdth_ctr_count));

if (list_empty(&gdth_instances))
return -ENODEV;

#ifdef GDTH_STATISTICS
TRACE2(("gdth_detect(): Initializing timer !\n"));
init_timer(&gdth_timer);
Expand Down

0 comments on commit 535864f

Please sign in to comment.