Searched refs:hex (Results 1 - 11 of 11) sorted by relevance

/drivers/mfd/
H A Djanz-cmodio.c53 /* hex switch position */
54 u8 hex; member in struct:cmodio_device
162 return snprintf(buf, PAGE_SIZE, "%x\n", priv->hex);
218 /* Read the hex switch on the carrier board */
219 priv->hex = ioread8(&priv->ctrl->int_enable);
221 /* Add the MODULbus number (hex switch value) to the device's sysfs */
/drivers/media/radio/
H A DKconfig218 hex "RadioTrack i/o port (0x20f or 0x30f)"
241 hex "RadioTrack II i/o port (0x20c or 0x30c)"
260 hex "Aztech/Packard Bell I/O port (0x350 or 0x358)"
285 hex "Fixed I/O port (0x20c, 0x30c, 0x24c, 0x34c, 0x248 or 0x28c)"
370 hex "Trust i/o port (usually 0x350 or 0x358)"
393 hex "Typhoon I/O port (0x316 or 0x336)"
427 hex "ZOLTRIX I/O port (0x20c or 0x30c)"
/drivers/staging/tidspbridge/
H A DKconfig27 hex "Physical memory pool size (Byte)"
/drivers/isdn/capi/
H A Dcapiutil.c788 unsigned hex = 0; local
794 if (hex)
797 hex = 0;
799 if (!hex)
803 hex = 1;
805 if (hex)
/drivers/net/ppp/
H A Dppp_synctty.c108 * Utility procedures to print a buffer in hex/ascii
114 static const char hex[] = "0123456789ABCDEF"; local
118 *out++ = hex[(next_ch >> 4) & 0x0F];
119 *out++ = hex[next_ch & 0x0F];
/drivers/auxdisplay/
H A DKconfig37 hex "Parallel port where the LCD is connected"
/drivers/md/
H A Ddm-crypt.c1239 * Decode key from its hex representation
1241 static int crypt_decode_key(u8 *key, char *hex, unsigned int size) argument
1250 buffer[0] = *hex++;
1251 buffer[1] = *hex++;
1259 if (*hex != '\0')
1266 * Encode key into its hex representation
1268 static void crypt_encode_key(char *hex, u8 *key, unsigned int size) argument
1273 sprintf(hex, "%02x", *key);
1274 hex += 2;
/drivers/atm/
H A DKconfig263 string "Dxxxx" to VCI 1023 (where x is a hex digit). See the file
287 string "Dxxxx" to VCI 1023 (where x is a hex digit). See the file
/drivers/net/wireless/bcmdhd/
H A Dbcmutils.c1004 static const char hex[] = local
1014 *p++ = hex[(*octet >> 4) & 0xf];
1015 *p++ = hex[*octet & 0xf];
1049 /* pretty hex print a pkt buffer chain */
1637 /* print bytes formatted as hex to a string. return the resulting string length */
1653 /* pretty hex print a contiguous buffer */
/drivers/block/
H A Dcciss_scsi.c269 print_bytes (unsigned char *c, int len, int hex, int ascii)
275 if (hex)
/drivers/scsi/
H A Dibmmca.c1004 const char hex[16] = "0123456789abcdef"; local
1009 answer[0] = hex[val];

Completed in 471 milliseconds