OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bus_addr
(Results
1 - 4
of
4
) sorted by null
/external/syslinux/gpxe/src/arch/i386/include/gpxe/
x86_io.h
42
IOAPI_INLINE ( x86, bus_to_phys ) ( unsigned long
bus_addr
) {
43
return
bus_addr
;
47
IOAPI_INLINE ( x86, ioremap ) ( unsigned long
bus_addr
, size_t len __unused ) {
48
return phys_to_virt (
bus_addr
);
/external/syslinux/gpxe/src/include/gpxe/efi/
efi_io.h
43
IOAPI_INLINE ( efi, bus_to_phys ) ( unsigned long
bus_addr
) {
44
return
bus_addr
;
48
IOAPI_INLINE ( efi, ioremap ) ( unsigned long
bus_addr
, size_t len __unused ) {
49
return ( ( void * )
bus_addr
);
/external/syslinux/gpxe/src/include/gpxe/
io.h
159
* @ret
bus_addr
Bus address
166
* @v
bus_addr
Bus address
169
unsigned long bus_to_phys ( unsigned long
bus_addr
);
175
* @ret
bus_addr
Bus address
185
* @v
bus_addr
Bus address
190
static inline __always_inline void * bus_to_virt ( unsigned long
bus_addr
) {
191
return phys_to_virt ( bus_to_phys (
bus_addr
) );
197
* @v
bus_addr
Bus address
201
void * ioremap ( unsigned long
bus_addr
, size_t len );
214
* @ret
bus_addr
Bus addres
[
all
...]
/external/libusb/libusb/os/
wince_usb.c
148
unsigned char
bus_addr
, unsigned char dev_addr)
153
dev->bus_number =
bus_addr
;
282
unsigned char
bus_addr
, dev_addr;
local
297
success = UkwGetDeviceAddress(devices[i], &
bus_addr
, &dev_addr, &session_id);
307
bus_addr
, dev_addr, session_id);
314
bus_addr
, dev_addr, session_id);
321
r = init_device(dev, devices[i],
bus_addr
, dev_addr);
Completed in 98 milliseconds