Changeset 07f49ae in mainline


Ignore:
Timestamp:
2011-08-31T11:17:54Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b5cfeab4
Parents:
0815000
Message:

Rename: batch ⇒ uhci_batch to differ from library version

Location:
uspace/drv/bus/usb/uhci
Files:
3 edited
2 moved

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/uhci/Makefile

    r0815000 r07f49ae  
    4242
    4343SOURCES = \
     44        hc.c \
    4445        main.c \
     46        pci.c \
     47        root_hub.c \
    4548        transfer_list.c \
    4649        uhci.c \
    47         hc.c \
    48         root_hub.c \
    49         hw_struct/transfer_descriptor.c \
    50         pci.c \
    51         batch.c
     50        uhci_batch.c \
     51        hw_struct/transfer_descriptor.c
    5252
    5353include $(USPACE_PREFIX)/Makefile.common
  • uspace/drv/bus/usb/uhci/hc.c

    r0815000 r07f49ae  
    4141
    4242#include "hc.h"
    43 #include "batch.h"
     43#include "uhci_batch.h"
    4444
    4545#define UHCI_INTR_ALLOW_INTERRUPTS \
  • uspace/drv/bus/usb/uhci/transfer_list.c

    r0815000 r07f49ae  
    3737#include <usb/debug.h>
    3838#include <libarch/barrier.h>
     39
    3940#include "transfer_list.h"
    40 #include "batch.h"
     41#include "uhci_batch.h"
    4142
    4243static void transfer_list_remove_batch(
  • uspace/drv/bus/usb/uhci/uhci_batch.c

    r0815000 r07f49ae  
    3838#include <usb/debug.h>
    3939
    40 #include "batch.h"
     40#include "uhci_batch.h"
    4141#include "transfer_list.h"
    4242#include "hw_struct/transfer_descriptor.h"
Note: See TracChangeset for help on using the changeset viewer.