Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10413
b: refs/heads/master
c: f339ab3
h: refs/heads/master
i:
  10411: f8b560d
v: v3
  • Loading branch information
Russell King authored and Russell King committed Oct 28, 2005
1 parent 388997a commit c3dbef1
Show file tree
Hide file tree
Showing 5 changed files with 9 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: 674c04538284736c4a44224c78cb784b2c972f98
refs/heads/master: f339ab3d6c59f8f898c165384aa2b6a0ae5d4c1c
1 change: 1 addition & 0 deletions trunk/arch/arm/kernel/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
*/
#include <linux/config.h>
#include <linux/module.h>
#include <linux/moduleloader.h>
#include <linux/kernel.h>
#include <linux/elf.h>
#include <linux/vmalloc.h>
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/arm/mm/consistent.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static struct vm_region consistent_head = {
};

static struct vm_region *
vm_region_alloc(struct vm_region *head, size_t size, int gfp)
vm_region_alloc(struct vm_region *head, size_t size, unsigned int gfp)
{
unsigned long addr = head->vm_start, end = head->vm_end - size;
unsigned long flags;
Expand Down Expand Up @@ -133,8 +133,8 @@ static struct vm_region *vm_region_find(struct vm_region *head, unsigned long ad
#endif

static void *
__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, int gfp,
pgprot_t prot)
__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
unsigned int gfp, pgprot_t prot)
{
struct page *page;
struct vm_region *c;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pcmcia/sa1111_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void sa1111_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)

static int pcmcia_probe(struct sa1111_dev *dev)
{
char *base;
void __iomem *base;

if (!request_mem_region(dev->res.start, 512,
SA1111_DRIVER_NAME(dev)))
Expand Down
6 changes: 3 additions & 3 deletions trunk/include/asm-arm/mach/arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ struct machine_desc {
* Set of macros to define architecture features. This is built into
* a table by the linker.
*/
#define MACHINE_START(_type,_name) \
const struct machine_desc __mach_desc_##_type \
#define MACHINE_START(_type,_name) \
static const struct machine_desc __mach_desc_##_type \
__attribute__((__section__(".arch.info.init"))) = { \
.nr = MACH_TYPE_##_type, \
.nr = MACH_TYPE_##_type, \
.name = _name,

#define MACHINE_END \
Expand Down

0 comments on commit c3dbef1

Please sign in to comment.