Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15066
b: refs/heads/master
c: 225bc8f
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Dec 12, 2005
1 parent 380c305 commit f1876ff
Show file tree
Hide file tree
Showing 19 changed files with 23 additions and 28 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: ecc51b6d5ca04bb6346c9ad6b37d6ca8bace12b3
refs/heads/master: 225bc8f1c7f534c01a4a8387b0d5fc9ee3830029
2 changes: 2 additions & 0 deletions trunk/Documentation/arm/00-INDEX
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ empeg
- Empeg documentation
mem_alignment
- alignment abort handler documentation
memory.txt
- description of the virtual memory layout
nwfpe
- NWFPE floating point emulator documentation
9 changes: 9 additions & 0 deletions trunk/arch/arm/kernel/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,15 @@ get_branch_address(struct task_struct *child, unsigned long pc, unsigned long in
*/
long aluop1, aluop2, ccbit;

if ((insn & 0x0fffffd0) == 0x012fff10) {
/*
* bx or blx
*/
alt = get_user_reg(child, insn & 15);
break;
}


if ((insn & 0xf000) != 0xf000)
break;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sparc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ libs-y += arch/sparc/prom/ arch/sparc/lib/
# Renaming is done to avoid confusing pattern matching rules in 2.5.45 (multy-)
INIT_Y := $(patsubst %/, %/built-in.o, $(init-y))
CORE_Y := $(core-y)
CORE_Y += kernel/ mm/ fs/ ipc/ security/ crypto/
CORE_Y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/
CORE_Y := $(patsubst %/, %/built-in.o, $(CORE_Y))
DRIVERS_Y := $(patsubst %/, %/built-in.o, $(drivers-y))
NET_Y := $(patsubst %/, %/built-in.o, $(net-y))
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/sparc/lib/atomic32.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ int atomic_add_unless(atomic_t *v, int a, int u)
return ret != u;
}

static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
/* Atomic operations are already serializing */
void atomic_set(atomic_t *v, int i)
{
Expand Down
4 changes: 0 additions & 4 deletions trunk/drivers/char/watchdog/mpcore_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,6 @@ static ssize_t mpcore_wdt_write(struct file *file, const char *data, size_t len,
{
struct mpcore_wdt *wdt = file->private_data;

/* Can't seek (pwrite) on this device */
if (ppos != &file->f_pos)
return -ESPIPE;

/*
* Refresh the timer.
*/
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/mmc/mmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -932,8 +932,9 @@ static void mmc_read_scrs(struct mmc_host *host)

sg_init_one(&sg, (u8*)card->raw_scr, 8);

err = mmc_wait_for_req(host, &mrq);
if (err != MMC_ERR_NONE) {
mmc_wait_for_req(host, &mrq);

if (cmd.error != MMC_ERR_NONE || data.error != MMC_ERR_NONE) {
mmc_card_set_dead(card);
continue;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/serial/8250_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ pci_timedia_setup(struct serial_private *priv, struct pciserial_board *board,
break;
case 3:
offset = board->uart_offset;
bar = 1;
/* FALLTHROUGH */
case 4: /* BAR 2 */
case 5: /* BAR 3 */
case 6: /* BAR 4 */
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/video/bw2.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ struct bw2_par {
unsigned long fbsize;

struct sbus_dev *sdev;
struct list_head list;
};

/**
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/video/cg14.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ struct cg14_par {
int mode;
int ramsize;
struct sbus_dev *sdev;
struct list_head list;
};

static void __cg14_reset(struct cg14_par *par)
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/video/cg3.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ struct cg3_par {
unsigned long fbsize;

struct sbus_dev *sdev;
struct list_head list;
};

/**
Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/video/cg6.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ struct cg6_par {
unsigned long fbsize;

struct sbus_dev *sdev;
struct list_head list;
};

static int cg6_sync(struct fb_info *info)
Expand Down Expand Up @@ -612,7 +611,7 @@ static void cg6_chip_init(struct fb_info *info)
struct cg6_par *par = (struct cg6_par *) info->par;
struct cg6_tec __iomem *tec = par->tec;
struct cg6_fbc __iomem *fbc = par->fbc;
u32 rev, conf, mode, tmp;
u32 rev, conf, mode;
int i;

/* Turn off stuff in the Transform Engine. */
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/video/ffb.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,6 @@ struct ffb_par {
int prom_parent_node;
int dac_rev;
int board_type;
struct list_head list;
};

static void FFBFifo(struct ffb_par *par, int n)
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/video/leo.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ struct leo_par {
unsigned long fbsize;

struct sbus_dev *sdev;
struct list_head list;
};

static void leo_wait(struct leo_lx_krn __iomem *lx_krn)
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/video/p9100.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ struct p9100_par {
unsigned long fbsize;

struct sbus_dev *sdev;
struct list_head list;
};

/**
Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/video/tcx.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ struct tcx_par {
int lowdepth;

struct sbus_dev *sdev;
struct list_head list;
};

/* Reset control plane so that WID is 8-bit plane. */
Expand Down Expand Up @@ -444,7 +443,7 @@ static void tcx_init_one(struct sbus_dev *sdev)

tcx_reset(&all->info);

tcx_blank(0, &all->info);
tcx_blank(FB_BLANK_UNBLANK, &all->info);

if (fb_alloc_cmap(&all->info.cmap, 256, 0)) {
printk(KERN_ERR "tcx: Could not allocate color map.\n");
Expand Down
5 changes: 0 additions & 5 deletions trunk/include/asm-arm/arch-pxa/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,3 @@

#define fixup_irq(x) (x)

/*
* This prototype is required for cascading of multiplexed interrupts.
* Since it doesn't exist elsewhere, we'll put it here for now.
*/
extern void do_IRQ(int irq, struct pt_regs *regs);
6 changes: 3 additions & 3 deletions trunk/include/asm-arm/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ extern void __raw_writesb(void __iomem *addr, const void *data, int bytelen);
extern void __raw_writesw(void __iomem *addr, const void *data, int wordlen);
extern void __raw_writesl(void __iomem *addr, const void *data, int longlen);

extern void __raw_readsb(void __iomem *addr, void *data, int bytelen);
extern void __raw_readsw(void __iomem *addr, void *data, int wordlen);
extern void __raw_readsl(void __iomem *addr, void *data, int longlen);
extern void __raw_readsb(const void __iomem *addr, void *data, int bytelen);
extern void __raw_readsw(const void __iomem *addr, void *data, int wordlen);
extern void __raw_readsl(const void __iomem *addr, void *data, int longlen);

#define __raw_writeb(v,a) (__chk_io_ptr(a), *(volatile unsigned char __force *)(a) = (v))
#define __raw_writew(v,a) (__chk_io_ptr(a), *(volatile unsigned short __force *)(a) = (v))
Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-arm/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ static inline void *phys_to_virt(unsigned long x)
*/
#define __pa(x) __virt_to_phys((unsigned long)(x))
#define __va(x) ((void *)__phys_to_virt((unsigned long)(x)))
#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)

/*
* Virtual <-> DMA view memory address translations
Expand Down

0 comments on commit f1876ff

Please sign in to comment.