mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
Merge master.kernel.org:/home/rmk/linux-2.6-arm
This commit is contained in:
commit
062dfa433c
@ -16,5 +16,7 @@ empeg
|
|||||||
- Empeg documentation
|
- Empeg documentation
|
||||||
mem_alignment
|
mem_alignment
|
||||||
- alignment abort handler documentation
|
- alignment abort handler documentation
|
||||||
|
memory.txt
|
||||||
|
- description of the virtual memory layout
|
||||||
nwfpe
|
nwfpe
|
||||||
- NWFPE floating point emulator documentation
|
- NWFPE floating point emulator documentation
|
||||||
|
@ -242,6 +242,15 @@ get_branch_address(struct task_struct *child, unsigned long pc, unsigned long in
|
|||||||
*/
|
*/
|
||||||
long aluop1, aluop2, ccbit;
|
long aluop1, aluop2, ccbit;
|
||||||
|
|
||||||
|
if ((insn & 0x0fffffd0) == 0x012fff10) {
|
||||||
|
/*
|
||||||
|
* bx or blx
|
||||||
|
*/
|
||||||
|
alt = get_user_reg(child, insn & 15);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if ((insn & 0xf000) != 0xf000)
|
if ((insn & 0xf000) != 0xf000)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -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;
|
struct mpcore_wdt *wdt = file->private_data;
|
||||||
|
|
||||||
/* Can't seek (pwrite) on this device */
|
|
||||||
if (ppos != &file->f_pos)
|
|
||||||
return -ESPIPE;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Refresh the timer.
|
* Refresh the timer.
|
||||||
*/
|
*/
|
||||||
|
@ -12,8 +12,3 @@
|
|||||||
|
|
||||||
#define fixup_irq(x) (x)
|
#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);
|
|
||||||
|
@ -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_writesw(void __iomem *addr, const void *data, int wordlen);
|
||||||
extern void __raw_writesl(void __iomem *addr, const void *data, int longlen);
|
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_readsb(const void __iomem *addr, void *data, int bytelen);
|
||||||
extern void __raw_readsw(void __iomem *addr, void *data, int wordlen);
|
extern void __raw_readsw(const void __iomem *addr, void *data, int wordlen);
|
||||||
extern void __raw_readsl(void __iomem *addr, void *data, int longlen);
|
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_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))
|
#define __raw_writew(v,a) (__chk_io_ptr(a), *(volatile unsigned short __force *)(a) = (v))
|
||||||
|
@ -122,6 +122,7 @@ static inline void *phys_to_virt(unsigned long x)
|
|||||||
*/
|
*/
|
||||||
#define __pa(x) __virt_to_phys((unsigned long)(x))
|
#define __pa(x) __virt_to_phys((unsigned long)(x))
|
||||||
#define __va(x) ((void *)__phys_to_virt((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
|
* Virtual <-> DMA view memory address translations
|
||||||
|
Loading…
Reference in New Issue
Block a user