remove debugging
authorGreg Watson <jarrah@users.sourceforge.net>
Wed, 17 Mar 2004 22:04:22 +0000 (22:04 +0000)
committerGreg Watson <jarrah@users.sourceforge.net>
Wed, 17 Mar 2004 22:04:22 +0000 (22:04 +0000)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1424 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/pc80/ide/ide.c

index fa05f88989488e6cd28b0bd9da9a4a0e12bd25c2..f511a559a921775c94a43eb164e49a6ae09aab88 100644 (file)
@@ -761,7 +761,6 @@ atapi_request_sense(struct harddisk_info *info, uint8_t *asc, uint8_t *ascq)
 {
        uint8_t packet[12];
        uint8_t buf[18];
-       int i;
 
        memset(packet, 0, sizeof packet);
        packet[0] = 0x03; /* REQUEST SENSE */
@@ -769,10 +768,6 @@ atapi_request_sense(struct harddisk_info *info, uint8_t *asc, uint8_t *ascq)
        if (pio_packet(info, 1, packet, sizeof packet, buf, sizeof buf) != 0)
                return -1;
 
-       for (i = 0; i < sizeof buf; i++)
-               printk_debug("%02x ", buf[i]);
-       printk_debug("\n");
-
        if (asc)
                *asc = buf[12];
        if (ascq)
@@ -828,7 +823,6 @@ ok:
                | (uint32_t) buf[5] << 16
                | (uint32_t) buf[6] << 8
                | (uint32_t) buf[7] << 0;
-       printk_debug("block_len=%u\n", block_len);
        if (block_len != IDE_SECTOR_SIZE && block_len != CDROM_SECTOR_SIZE) {
                printk_info("Unsupported sector size %u\n", block_len);
                return -1;
@@ -840,7 +834,6 @@ ok:
                | (uint32_t) buf[2] << 8
                | (uint32_t) buf[3] << 0;
 
-       printk_debug("sectors=%u\n", sectors);
        if (info->hw_sector_size == CDROM_SECTOR_SIZE)
                sectors <<= 2; /* # of sectors in 512-byte "soft" sector */
        if (sectors != info->sectors)