Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53b3531b authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
Browse files

[PATCH] s/;;/;/g

parent 29afd49b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ void mainstone_leds_event(led_event_t evt)
		break;

	case led_green_on:
		hw_led_state |= D21;;
		hw_led_state |= D21;
		break;

	case led_green_off:
@@ -93,7 +93,7 @@ void mainstone_leds_event(led_event_t evt)
		break;

	case led_amber_on:
		hw_led_state |= D22;;
		hw_led_state |= D22;
		break;

	case led_amber_off:
@@ -101,7 +101,7 @@ void mainstone_leds_event(led_event_t evt)
		break;

	case led_red_on:
		hw_led_state |= D23;;
		hw_led_state |= D23;
		break;

	case led_red_off:
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ void s3c24xx_set_board(struct s3c24xx_board *b)
	board = b;

	if (b->clocks_count != 0) {
		struct clk **ptr = b->clocks;;
		struct clk **ptr = b->clocks;

		for (i = b->clocks_count; i > 0; i--, ptr++)
			s3c24xx_register_clock(*ptr);
+1 −1
Original line number Diff line number Diff line
@@ -1406,7 +1406,7 @@ void gdbstub(int sigval)
			__debug_frame->psr |= PSR_S;
		__debug_regs->brr = (__debug_frame->tbr & TBR_TT) << 12;
		__debug_regs->brr |= BRR_EB;
		sigval = SIGXCPU;;
		sigval = SIGXCPU;
	}

	LEDS(0x5002);
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ static struct bteinfo_s *bte_if_on_node(nasid_t nasid, int interface)
	nodepda_t *tmp_nodepda;

	if (nasid_to_cnodeid(nasid) == -1)
		return (struct bteinfo_s *)NULL;;
		return (struct bteinfo_s *)NULL;

	tmp_nodepda = NODEPDA(nasid_to_cnodeid(nasid));
	return &tmp_nodepda->bte_if[interface];
+1 −1
Original line number Diff line number Diff line
@@ -377,7 +377,7 @@ tioca_dma_mapped(struct pci_dev *pdev, u64 paddr, size_t req_size)
	struct tioca_dmamap *ca_dmamap;
	void *map;
	unsigned long flags;
	struct pcidev_info *pcidev_info = SN_PCIDEV_INFO(pdev);;
	struct pcidev_info *pcidev_info = SN_PCIDEV_INFO(pdev);

	tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
	tioca_kern = (struct tioca_kernel *)tioca_common->ca_kernel_private;
Loading