Changeset ff6dd73 in mainline


Ignore:
Timestamp:
2011-08-31T17:49:05Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
70fb822
Parents:
b991d37
Message:

ohci: rename file batch ⇒ ohci_batch in reparation for further changes

Location:
uspace/drv/bus/usb/ohci
Files:
4 edited
2 moved

Legend:

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

    rb991d37 rff6dd73  
    4444
    4545SOURCES = \
    46         batch.c \
    4746        endpoint_list.c \
    4847        hc.c \
    4948        main.c \
    5049        ohci.c \
     50        ohci_batch.c \
    5151        ohci_endpoint.c \
    5252        pci.c \
  • uspace/drv/bus/usb/ohci/hc.h

    rb991d37 rff6dd73  
    4545#include <usb/host/hcd.h>
    4646
    47 #include "batch.h"
     47#include "ohci_batch.h"
    4848#include "ohci_regs.h"
    4949#include "root_hub.h"
  • uspace/drv/bus/usb/ohci/ohci.c

    rb991d37 rff6dd73  
    9191            &dev_to_ohci(fun->dev)->hc.generic.dev_manager;
    9292
    93         usb_address_t addr = usb_device_keeper_find(manager, handle);
     93        const usb_address_t addr = usb_device_keeper_find(manager, handle);
    9494        if (addr < 0) {
    9595                return addr;
  • uspace/drv/bus/usb/ohci/ohci_batch.c

    rb991d37 rff6dd73  
    3838#include <usb/debug.h>
    3939
    40 #include "batch.h"
     40#include "ohci_batch.h"
    4141#include "ohci_endpoint.h"
    4242#include "utils/malloc32.h"
  • uspace/drv/bus/usb/ohci/root_hub.h

    rb991d37 rff6dd73  
    3737#include <usb/usb.h>
    3838#include <usb/dev/driver.h>
     39#include <usb/host/batch.h>
    3940
    4041#include "ohci_regs.h"
    41 #include "batch.h"
    4242
    4343#define HUB_DESCRIPTOR_MAX_SIZE (7 + 2 + 2)
Note: See TracChangeset for help on using the changeset viewer.