* disk/ata.c changes, repost
@ 2008-02-01 23:34 Maciej 'Agaran' Pijanka
0 siblings, 0 replies; only message in thread
From: Maciej 'Agaran' Pijanka @ 2008-02-01 23:34 UTC (permalink / raw)
To: grub-devel
[-- Attachment #1: Type: message/rfc822, Size: 263 bytes --]
this patch just changes output of debug printing ata devices
found in machine.
i hope now coding style is acceptable
--
agaran at pld dash linux dot org :: PLD Linux Developer [#133161]
I do not fear computers. I fear the lack of them. [Isaac Asimov]
[-- Attachment #2: grub2-ata.patch --]
[-- Type: text/plain, Size: 1550 bytes --]
Index: disk/ata.c
===================================================================
RCS file: /sources/grub/grub2/disk/ata.c,v
retrieving revision 1.6
diff -u -r1.6 ata.c
--- disk/ata.c 5 Nov 2007 16:15:26 -0000 1.6
+++ disk/ata.c 1 Feb 2008 23:29:17 -0000
@@ -204,18 +204,49 @@
grub_ata_dumpinfo (struct grub_ata_device *dev, char *info)
{
char text[41];
+ char *s,*p = 0;
/* The device information was read, dump it for debugging. */
+
+ /* Model */
+ grub_ata_strncpy (text, info + 54, 40);
+ /* Now strip trailing spaces */
+ s=text;
+ while(*s)
+ {
+ if(*s != ' ')
+ p = (char *)s;
+ s++;
+ }
+ p++;
+ *p = '\0';
+ grub_printf("ata%d: Model: %s, (Addr: %d)\n", dev->port * 2 + dev->device, text, dev->addr);
+ /* serial */
grub_ata_strncpy (text, info + 20, 20);
- grub_printf ("Serial: %s\n", text);
+ /* Now strip trailing spaces */
+ s=text;
+ while(*s)
+ {
+ if(*s != ' ')
+ p = (char *)s;
+ s++;
+ }
+ p++;
+ *p = '\0';
+ grub_printf(" Serial: %s, ", text);
+ /* Firmware */
grub_ata_strncpy (text, info + 46, 8);
- grub_printf ("Firmware: %s\n", text);
- grub_ata_strncpy (text, info + 54, 40);
- grub_printf ("Model: %s\n", text);
-
- grub_printf ("Addressing: %d\n", dev->addr);
- grub_printf ("#sectors: %d\n", dev->size);
-
+ /* Now strip trailing spaces */
+ s=text;
+ while(*s)
+ {
+ if(*s != ' ')
+ p = (char *)s;
+ s++;
+ }
+ p++;
+ *p = '\0';
+ grub_printf ("Firmware: %s, #sectors: %d\n", text, dev->size);
}
static grub_err_t
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-02-01 23:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-01 23:34 disk/ata.c changes, repost Maciej 'Agaran' Pijanka
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.