[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cdi-devel] [PATCH 0/4] mem.h - Part 1



Okay, so here is the first part of the conversion. The header is mostly
unchanged, I only added a function cdi_mem_map which maps a given
physical address. The rest of the patches replace the memory management
functions of misc.h with the mem.h ones.

Once this is in, the next step is to convert interfaces like
send_packet to take a cdi_mem_area as a parameter.

Kevin Wolf (4):
  mem.h: Handling memory areas
  pcnet: Factor init block function out
  cdi: Replace cdi_alloc_phys_mem/addr
  cdi: Remove obsolete functions

 ata/device.c              |   16 ++-
 ata/device.h              |    4 +-
 ata/request.c             |    2 +-
 e1000/device.c            |   19 +++-
 e1000/device.h            |    2 +-
 include/cdi-osdep.h       |   11 ++
 include/cdi/mem.h         |  255 +++++++++++++++++++++++++++++++++++++++++++++
 include/cdi/misc.h        |   23 ----
 ne2k/include/ne2k.h       |    4 +-
 ne2k/ne2k.c               |   13 ++-
 pcnet/include/pcnet.h     |    3 -
 pcnet/pcnet.c             |  127 ++++++++++++++---------
 rtl8139/include/rtl8139.h |    4 +-
 rtl8139/rtl8139.c         |   13 ++-
 sis900/device.c           |   15 ++-
 sis900/device.h           |    2 +-
 16 files changed, 409 insertions(+), 104 deletions(-)
 create mode 100644 include/cdi/mem.h