Fix two identical harmless typos in ata error messages:

s/issueing/issuing/

PR:		kern/89481
Submitted by:	John Nielsen
Approved by:	sos
MFC after:	1 week
This commit is contained in:
Giorgos Keramidas 2005-11-28 13:23:15 +00:00
parent 62f0bf3250
commit 6f26936c0f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152883

View File

@ -96,7 +96,7 @@ ata_begin_transaction(struct ata_request *request)
/* issue command */
if (ch->hw.command(request)) {
device_printf(request->dev, "error issueing %s command\n",
device_printf(request->dev, "error issuing %s command\n",
ata_cmd2str(request));
request->result = EIO;
goto begin_finished;
@ -139,7 +139,7 @@ ata_begin_transaction(struct ata_request *request)
/* issue command */
if (ch->hw.command(request)) {
device_printf(request->dev, "error issueing %s command\n",
device_printf(request->dev, "error issuing %s command\n",
ata_cmd2str(request));
request->result = EIO;
goto begin_finished;