Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27459
b: refs/heads/master
c: 81c2466
h: refs/heads/master
i:
  27457: c803931
  27455: 9fe79ab
v: v3
  • Loading branch information
Andrew Morton authored and Dave Jones committed Jun 9, 2006
1 parent 0e977ff commit 408964c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 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: b07cd5181f3c8de8c28fdac7dbeec9e4220b8037
refs/heads/master: 81c246691535ee3f865fbe6804b3be1b2c159e95
15 changes: 7 additions & 8 deletions trunk/drivers/char/agp/alpha-agp.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@ struct vm_operations_struct alpha_core_agp_vm_ops = {
};


static int alpha_core_agp_nop(void)
{
/* just return success */
return 0;
}

static int alpha_core_agp_fetch_size(void)
{
return alpha_core_agp_sizes[0].size;
Expand Down Expand Up @@ -120,6 +114,11 @@ static int alpha_core_agp_remove_memory(struct agp_memory *mem, off_t pg_start,
return status;
}

static int alpha_core_agp_create_free_gatt_table(struct agp_bridge_data *a)
{
return 0;
}

struct agp_bridge_driver alpha_core_agp_driver = {
.owner = THIS_MODULE,
.aperture_sizes = alpha_core_agp_sizes,
Expand All @@ -135,8 +134,8 @@ struct agp_bridge_driver alpha_core_agp_driver = {
.tlb_flush = alpha_core_agp_tlbflush,
.mask_memory = agp_generic_mask_memory,
.cache_flush = global_cache_flush,
.create_gatt_table = alpha_core_agp_nop,
.free_gatt_table = alpha_core_agp_nop,
.create_gatt_table = alpha_core_agp_create_free_gatt_table,
.free_gatt_table = alpha_core_agp_create_free_gatt_table,
.insert_memory = alpha_core_agp_insert_memory,
.remove_memory = alpha_core_agp_remove_memory,
.alloc_by_type = agp_generic_alloc_by_type,
Expand Down

0 comments on commit 408964c

Please sign in to comment.